Quellcode durchsuchen

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 vor 16 Jahren
Ursprung
Commit
07a1d77597
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/com/dmdirc/commandparser/commands/channel/ShowTopic.java

+ 1
- 1
src/com/dmdirc/commandparser/commands/channel/ShowTopic.java Datei anzeigen

@@ -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 {

Laden…
Abbrechen
Speichern