Fix bug in starting peek after receiving device_joined_or_left

This commit is contained in:
adel-signal 2026-02-03 10:47:39 -08:00 committed by GitHub
parent ff0ef313ff
commit bb33d633a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4445,12 +4445,10 @@ impl Client {
Self::request_remote_devices_as_soon_as_possible(state);
}
}
} else {
info!("SFU notified that a remote device has joined or left, requesting update");
Self::request_remote_devices_as_soon_as_possible(state);
}
} else {
info!(
"SFU notified that a remote device has joined or left, requesting update"
);
Self::request_remote_devices_as_soon_as_possible(state);
}
});
}