Skip to content

Commit

Permalink
fix: NotificationFired api change
Browse files Browse the repository at this point in the history
  • Loading branch information
adamk33n3r committed Apr 17, 2024
1 parent 800c277 commit 128e108
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class EventHandler {
public synchronized void notify(String message) {
this.ignoreNotificationFired = true;
// The event bus is synchronous
this.eventBus.post(new NotificationFired(message, TrayIcon.MessageType.NONE));
this.eventBus.post(new NotificationFired(null, message, TrayIcon.MessageType.NONE));
this.ignoreNotificationFired = false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
VERSION_BUILD=4607
VERSION_PHASE=release
VERSION_MAJOR=3
VERSION_MINOR=4
VERSION_PATCH=0
VERSION_MINOR=3
VERSION_PATCH=2

0 comments on commit 128e108

Please sign in to comment.