add delete persistent notif
This commit is contained in:
parent
666a0b1ad7
commit
51e7c63d66
2 changed files with 15 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue