Skip to content

Fix determining whether we need to send multi-device SyncMessage or not

Sign in for the full log view
GitHub Actions / clippy succeeded Nov 18, 2023 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

Annotations

Check warning on line 280 in libsignal-service/src/sender.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

length comparison to zero

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