1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-01-08 12:18:07 -05:00

Fix broadcast on topic change

This commit is contained in:
Steven Luo 2011-05-30 18:32:28 -07:00 committed by Sebastian Kaspari
parent 06e0849c17
commit dc95472aaf

View File

@ -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);
}
/**