chore: fix user awareness fetch (#5048)

* chore: fix user awareness fetch

* chore: update

* chore: update
This commit is contained in:
Nathan.fooo
2024-04-03 15:43:19 +08:00
committed by GitHub
parent 38fe61ff69
commit 58fb529eaa
22 changed files with 216 additions and 172 deletions

View File

@ -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(())