diff options
author | David Phillips <david@sighup.nz> | 2019-07-12 23:22:14 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-07-12 23:22:14 +1200 |
commit | 2d4ea694d74a1f97274df768051b7434bba3b2a0 (patch) | |
tree | 8210c1000e35dde9612930d6b819a28febb0a4f8 /Plugin | |
parent | 7e7609d60fe1c2dab6a5c2f968573888b9ceab07 (diff) | |
download | idalius-2d4ea694d74a1f97274df768051b7434bba3b2a0.tar.xz |
Topic: Change unknown topic text
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Topic.pm | 2 |
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"; } |