Fix deafened -> enabled mistranslation
Fix mislocation of caller query in detach_and_log_error Fix incorrect wording on livekit integration Add share_mic action for manually enabling the microphone Make mic sharing wait until the room has been fully established
This commit is contained in:
parent
dbd95e35cf
commit
cf4251fb55
4 changed files with 23 additions and 14 deletions
|
@ -968,9 +968,9 @@ impl<T> Task<T> {
|
|||
impl<T: 'static, E: 'static + Display> Task<Result<T, E>> {
|
||||
#[track_caller]
|
||||
pub fn detach_and_log_err(self, cx: &mut AppContext) {
|
||||
let caller = Location::caller();
|
||||
cx.spawn(|_| async move {
|
||||
if let Err(err) = self.await {
|
||||
let caller = Location::caller();
|
||||
log::error!("{}:{}: {:#}", caller.file(), caller.line(), err);
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue