Browse Source

Fix /topic using wrong formatter

Fixes issue 1613

git-svn-id: http://svn.dmdirc.com/trunk@4539 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Chris Smith 16 years ago
parent
commit
07a1d77597
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/commandparser/commands/channel/ShowTopic.java

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/ShowTopic.java View File

@@ -53,7 +53,7 @@ public final class ShowTopic extends ChannelCommand implements ExternalCommand {
53 53
             if (cChannel.getTopic().isEmpty()) {
54 54
                 sendLine(origin, isSilent, "channelNoTopic", cChannel);
55 55
             } else {
56
-                sendLine(origin, isSilent, "channelJoinTopic", cChannel.getTopic(),
56
+                sendLine(origin, isSilent, "channelTopicDiscovered", cChannel.getTopic(),
57 57
                         cChannel.getTopicUser(), 1000 * cChannel.getTopicTime(), cChannel);
58 58
             }
59 59
         } else {

Loading…
Cancel
Save