chore(ffi): Make Clippy happy.

This commit is contained in:
Ivan Enderlin
2023-06-12 09:05:55 +02:00
parent 6301f32ee5
commit 2f433138dd

View File

@@ -65,7 +65,7 @@ impl RoomList {
let sync_stream = this.sync();
pin_mut!(sync_stream);
while let Some(_) = sync_stream.next().await {
while sync_stream.next().await.is_some() {
// keep going!
}
})))