diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-29 17:16:41 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-29 17:16:41 +0100 |
commit | 771c4eac799ec3d9f1e9c41ab1fdc75c1bcb4868 (patch) | |
tree | 9bea644618301be0a0eb1478e54e9e59f8690eda /src/bayou.rs | |
parent | adb1a3b7c1cb24a773060f5944cdfe1ea7bd5816 (diff) | |
download | aerogramme-771c4eac799ec3d9f1e9c41ab1fdc75c1bcb4868.tar.gz aerogramme-771c4eac799ec3d9f1e9c41ab1fdc75c1bcb4868.zip |
covering imap commands
Diffstat (limited to 'src/bayou.rs')
-rw-r--r-- | src/bayou.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bayou.rs b/src/bayou.rs index 7253a30..c6a7ac0 100644 --- a/src/bayou.rs +++ b/src/bayou.rs @@ -450,10 +450,7 @@ impl K2vWatch { ) { let mut row = match Weak::upgrade(&self_weak) { Some(this) => this.target.clone(), - None => { - error!("can't start loop"); - return; - } + None => return, }; while let Some(this) = Weak::upgrade(&self_weak) { |