diff --git a/application/src/org/yaaic/irc/IRCConnection.java b/application/src/org/yaaic/irc/IRCConnection.java index 2e4e50c..f8fe944 100644 --- a/application/src/org/yaaic/irc/IRCConnection.java +++ b/application/src/org/yaaic/irc/IRCConnection.java @@ -727,6 +727,14 @@ public class IRCConnection extends PircBot target ); service.sendBroadcast(intent); + + // update the displayed conversation title if necessary + intent = Broadcast.createConversationIntent( + Broadcast.CONVERSATION_TOPIC, + server.getId(), + target + ); + service.sendBroadcast(intent); } /** @@ -755,14 +763,6 @@ public class IRCConnection extends PircBot target ); service.sendBroadcast(intent); - - // update the displayed conversation title if necessary - intent = Broadcast.createConversationIntent( - Broadcast.CONVERSATION_TOPIC, - server.getId(), - target - ); - service.sendBroadcast(intent); } /**