commit 12d09c743f556e1752770d2ca56ff56840255dbd parent e2b92e8c5713e60315da680b6bfa7d9ef2a31c54 Author: n0tr1v <n0tr1v@protonmail.com> Date: Thu, 30 Mar 2023 22:24:18 -0700 cleanup Diffstat:
| M | src/main.rs | | | 4 | +--- |
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/main.rs b/src/main.rs @@ -530,11 +530,9 @@ impl LeChatPHPClient { req = req.form(¶ms); } if let Err(err) = req.send() { + eprintln!("{:?}", err.to_string()); if err.is_timeout() { - eprintln!("{:?}", err.to_string()); continue; - } else { - eprintln!("{:?}", err.to_string()); } } break;