Merge pull request #171 from wrvsrx/fix-anniversayr-typo

Fix a typo about anniversary
This commit is contained in:
Lennart Kämmle
2026-01-20 13:17:44 +01:00
committed by GitHub

View File

@@ -338,7 +338,7 @@ impl CalendarStore for SqliteAddressbookStore {
out_objects.push((format!("{object_id}-birthday"), birthday)); out_objects.push((format!("{object_id}-birthday"), birthday));
} }
if let Some(anniversary) = object.get_anniversary_object()? { if let Some(anniversary) = object.get_anniversary_object()? {
out_objects.push((format!("{object_id}-anniversayr"), anniversary)); out_objects.push((format!("{object_id}-anniversary"), anniversary));
} }
} }
@@ -382,7 +382,7 @@ impl CalendarStore for SqliteAddressbookStore {
objects.push((format!("{object_id}-birthday"), birthday)); objects.push((format!("{object_id}-birthday"), birthday));
} }
if let Some(anniversary) = object.get_anniversary_object()? { if let Some(anniversary) = object.get_anniversary_object()? {
objects.push((format!("{object_id}-anniversayr"), anniversary)); objects.push((format!("{object_id}-anniversary"), anniversary));
} }
} }
Ok(objects) Ok(objects)