Browse Source

Fix ServerEventHandler using a silly eventbus.

pull/556/head
Chris Smith 9 years ago
parent
commit
6a1926947c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/Server.java

+ 1
- 1
src/com/dmdirc/Server.java View File

@@ -216,7 +216,7 @@ public class Server extends FrameContainer implements Connection {
216 216
         this.inviteManager = new InviteManagerImpl(this);
217 217
 
218 218
         awayMessage = Optional.empty();
219
-        eventHandler = new ServerEventHandler(this, groupChatManager, eventBus);
219
+        eventHandler = new ServerEventHandler(this, groupChatManager, getEventBus());
220 220
 
221 221
         this.address = uri;
222 222
         this.profile = profile;

Loading…
Cancel
Save