aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-03-03 18:04:44 +0100
committerGitHub <noreply@github.com>2018-03-03 18:04:44 +0100
commit71caa43d6fe4e54722c3d504c29d030255d0f0ee (patch)
treea9c7b9f34a1dae534cee9f666da2237749582a87 /src
parent7304240fb50458c64d63eb784967d9dbde75eae6 (diff)
downloadfrippy-71caa43d6fe4e54722c3d504c29d030255d0f0ee.tar.gz
frippy-71caa43d6fe4e54722c3d504c29d030255d0f0ee.zip
Correct error message on tell
Diffstat (limited to 'src')
-rw-r--r--src/plugins/tell/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/tell/mod.rs b/src/plugins/tell/mod.rs
index 4f6bfa0..f781ed8 100644
--- a/src/plugins/tell/mod.rs
+++ b/src/plugins/tell/mod.rs
@@ -57,7 +57,7 @@ impl<T: Database> Tell<T> {
.iter()
.any(|u| u.get_nickname().eq_ignore_ascii_case(&receiver))
{
- return Err(format!("{} is online in another channel.", receiver));
+ return Err(format!("{} is currently online.", receiver));
}
}
}