Bump linkifyjs from 4.1.3 to 4.1.4 in /axolotl-web #443
Annotations
3 warnings
Run clippy lints:
src/lib.rs#L1727
warning: this pattern reimplements `Result::unwrap_or`
--> src/handlers.rs:1727:19
|
1727 | let msg = if let Ok(s) = message.to_str() {
| ___________________^
1728 | | s
1729 | | } else {
1730 | | "Invalid message"
1731 | | };
| |_________^ help: replace with: `message.to_str().unwrap_or("Invalid message")`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or
= note: `#[warn(clippy::manual_unwrap_or)]` on by default
|
Run clippy lints:
src/lib.rs#L160
warning: this function has too many arguments (8/7)
--> src/manager_thread.rs:160:5
|
160 | / pub async fn new(
161 | | config_store: presage_store_sled::SledStore,
162 | | device_name: String,
163 | | link_callback: futures::channel::oneshot::Sender<url::Url>,
... |
168 | | uuid: Uuid,
169 | | ) -> Option<Self> {
| |_____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `#[warn(clippy::too_many_arguments)]` on by default
|
Run clippy lints
warning: 2 warnings emitted
|
Loading