diff options
| author | Jokler <jokler.contact@gmail.com> | 2018-07-06 00:28:01 +0200 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2018-07-06 00:28:01 +0200 |
| commit | 975c94752b6ef59caea5ed632d1428efb5f6433b (patch) | |
| tree | 3fc8cb35e176b2b646c2fdac3511b3484da43d6b | |
| parent | 3360430bcb90273fcec2b8f4f49f22471e75226e (diff) | |
| download | frippy-975c94752b6ef59caea5ed632d1428efb5f6433b.tar.gz frippy-975c94752b6ef59caea5ed632d1428efb5f6433b.zip | |
Tell: Only show error if the message was not sent
| -rw-r--r-- | src/plugins/tell/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/tell/mod.rs b/src/plugins/tell/mod.rs index eb7a244..3fcf5ef 100644 --- a/src/plugins/tell/mod.rs +++ b/src/plugins/tell/mod.rs @@ -75,7 +75,7 @@ impl<T: Database, C: FrippyClient> Tell<T, C> { .any(|option| option.is_some()) { if !online.contains(&receiver) { - online.push(receiver); + // online.push(receiver); } // TODO Change this when https://github.com/aatxe/irc/issues/136 gets resolved //continue; |
