aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-07-12 23:22:14 +1200
committerDavid Phillips <david@sighup.nz>2019-07-12 23:22:14 +1200
commit2d4ea694d74a1f97274df768051b7434bba3b2a0 (patch)
tree8210c1000e35dde9612930d6b819a28febb0a4f8
parent7e7609d60fe1c2dab6a5c2f968573888b9ceab07 (diff)
downloadidalius-2d4ea694d74a1f97274df768051b7434bba3b2a0.tar.xz
Topic: Change unknown topic text
-rw-r--r--Plugin/Topic.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Topic.pm b/Plugin/Topic.pm
index ce3c782..6533d61 100644
--- a/Plugin/Topic.pm
+++ b/Plugin/Topic.pm
@@ -23,7 +23,7 @@ sub topic {
my $channel = @arguments ? $arguments[0] : $where;
return "Syntax: topic [channel]" unless $channel =~ m/^#.*$/;
- my $topic = $channel_topics{$channel} || "(no topic)";
+ my $topic = $channel_topics{$channel} || "(unknown)";
return "Topic for $channel: $topic";
}