replacement in src/main.rs at line 98
[3.46995]→[3.46995:47070](∅→∅) − .body(Body::from(format!("Accepted")))
+ .body(Body::from("Accepted".to_string()))
replacement in src/main.rs at line 104
[3.47405]→[3.47405:47500](∅→∅) − .body(Body::from(format!("Cann't get presence text")))
+ .body(Body::from("Cann't get presence text".to_string()))
replacement in src/main.rs at line 111
[3.47787]→[3.47787:47870](∅→∅) − .body(Body::from(format!("Cann't get presence text")))
+ .body(Body::from("Cann't get presence text".to_string()))
replacement in src/main.rs at line 128
− .body(Body::from(format!("Accepted")))
+ .body(Body::from("Accepted".to_string()))
replacement in src/main.rs at line 134
− .body(Body::from(format!("Cann't send ping")))
+ .body(Body::from("Cann't send ping".to_string()))
replacement in src/main.rs at line 147
[3.1581]→[3.1581:1660](∅→∅) − .body(Body::from(format!("Accepted")))
+ .body(Body::from("Accepted".to_string()))
replacement in src/main.rs at line 153
[3.2014]→[3.2014:2112](∅→∅) − .body(Body::from(format!("Cann't get message text")))
+ .body(Body::from("Cann't get message text".to_string()))
replacement in src/main.rs at line 160
[3.2360]→[3.2360:2446](∅→∅) − .body(Body::from(format!("Cann't get message text")))
+ .body(Body::from("Cann't get message text".to_string()))
replacement in src/main.rs at line 181
[3.2161]→[3.2161:2236](∅→∅) − .body(Body::from(format!("Accepted")))
+ .body(Body::from("Accepted".to_string()))
replacement in src/main.rs at line 187
[3.2576]→[3.2576:2676](∅→∅) − .body(Body::from(format!("Cann't get chat presence text")))
+ .body(Body::from(
+ "Cann't get chat presence text".to_string(),
+ ))
replacement in src/main.rs at line 196
[3.2963]→[3.2963:3051](∅→∅) − .body(Body::from(format!("Cann't get chat presence text")))
+ .body(Body::from("Cann't get chat presence text".to_string()))
replacement in src/main.rs at line 212
[3.3725]→[3.3725:3800](∅→∅) − .body(Body::from(format!("Accepted")))
+ .body(Body::from("Accepted".to_string()))
replacement in src/main.rs at line 218
[3.4139]→[3.4139:4238](∅→∅) − .body(Body::from(format!("Cann't get chat message text")))
+ .body(Body::from(
+ "Cann't get chat message text".to_string(),
+ ))
replacement in src/main.rs at line 227
[3.4525]→[3.4525:4612](∅→∅) − .body(Body::from(format!("Cann't get chat message text")))
+ .body(Body::from("Cann't get chat message text".to_string()))
replacement in src/main.rs at line 293
[3.50523]→[2.283:475](∅→∅) − match tokio::signal::ctrl_c().await {
− Err(e) => {
− error!("Stop signal registering failed {}", e);
− return;
− }
− _ => {}
+ if let Err(e) = tokio::signal::ctrl_c().await {
+ error!("Stop signal registering failed {}", e);
replacement in src/main.rs at line 319
[3.51437]→[2.550:589](∅→∅) + if let Err(e) = cmd_send
replacement in src/main.rs at line 324
− Err(e) => {
− error!("Cann't send global ping {}", e);
− }
− _ => {}
+ error!("Cann't send global ping {}", e);
replacement in src/main.rs at line 326
[2.856]→[2.856:1120](∅→∅) − match cmd_send.send(XmppCommand::TimeoutCleanup).await {
− Err(e) => {
− error!("Cann't send timeout cleanup {}", e);
− }
− _ => {}
+ if let Err(e) = cmd_send.send(XmppCommand::TimeoutCleanup).await {
+ error!("Cann't send timeout cleanup {}", e);