From d9afc85222c6ec92a5ccac215dc0aab06d79abe5 Mon Sep 17 00:00:00 2001 From: wrvsrx Date: Tue, 20 Jan 2026 19:45:50 +0800 Subject: [PATCH] Fix a typo about anniversary --- .../store_sqlite/src/addressbook_store/birthday_calendar.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/store_sqlite/src/addressbook_store/birthday_calendar.rs b/crates/store_sqlite/src/addressbook_store/birthday_calendar.rs index 2161d2c..978c8d4 100644 --- a/crates/store_sqlite/src/addressbook_store/birthday_calendar.rs +++ b/crates/store_sqlite/src/addressbook_store/birthday_calendar.rs @@ -338,7 +338,7 @@ impl CalendarStore for SqliteAddressbookStore { out_objects.push((format!("{object_id}-birthday"), birthday)); } 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)); } if let Some(anniversary) = object.get_anniversary_object()? { - objects.push((format!("{object_id}-anniversayr"), anniversary)); + objects.push((format!("{object_id}-anniversary"), anniversary)); } } Ok(objects)