mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
chore: fix user awareness fetch (#5048)
* chore: fix user awareness fetch * chore: update * chore: update
This commit is contained in:
@ -27,7 +27,7 @@ impl CollabInteract for CollabInteractImpl {
|
||||
.handle_reminder_action(DocumentReminderAction::Add { reminder })
|
||||
.await;
|
||||
},
|
||||
Err(e) => tracing::error!("Failed to convert reminder: {:?}", e),
|
||||
Err(e) => tracing::error!("Failed to add reminder: {:?}", e),
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
@ -56,7 +56,7 @@ impl CollabInteract for CollabInteractImpl {
|
||||
.handle_reminder_action(DocumentReminderAction::Update { reminder })
|
||||
.await;
|
||||
},
|
||||
Err(e) => tracing::error!("Failed to convert reminder: {:?}", e),
|
||||
Err(e) => tracing::error!("Failed to update reminder: {:?}", e),
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
|
Reference in New Issue
Block a user