You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: length comparison to zero
--> libsignal-service/src/sender.rs:280:36
|
280 | .map_or(false, |s| s.len() > 0)
| ^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!s.is_empty()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
= note: `#[warn(clippy::len_zero)]` on by default
warning: length comparison to zero
--> libsignal-service/src/sender.rs:280:36
|
280 | .map_or(false, |s| s.len() > 0)
| ^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!s.is_empty()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#len_zero
= note: `#[warn(clippy::len_zero)]` on by default