add delete persistent notif

This commit is contained in:
Maple 2026-04-25 17:24:28 +02:00
commit 51e7c63d66
2 changed files with 15 additions and 1 deletions

View file

@ -99,7 +99,7 @@ pub fn friend_info_from_user(data: &UserData) -> FriendInfo {
presence: data.presence.clone(),
comment: Comment {
unk: 0,
message: "litterally everyone is friends here =w=".to_string(),
message: "haii =w=".to_string(),
last_changed: KerberosDateTime::now(),
},
became_friends: KerberosDateTime::now(),
@ -276,6 +276,13 @@ impl Friends for FriendsUser {
Ok(())
}
async fn delete_persistent_notification(
&self,
notifs: Vec<PersistentNotification>,
) -> Result<(), ErrorCode> {
Ok(())
}
async fn check_setting_status(&self) -> Result<u8, ErrorCode> {
Ok(0xFF)
}