-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
Describe the bug
Registering the same Event twice results in the first one being forgotten
Code Sample
OBSRemoteController.builder()
//...
.registerEventListener(CurrentSceneCollectionChangedEvent.class,
currentSceneCollectionChangedEvent -> System.out.println("First"))
.registerEventListener(CurrentSceneCollectionChangedEvent.class,
currentSceneCollectionChangedEvent -> System.out.println("Second"))
//...Expected behavior
Both Events callbacks should be invoked.
Additional context
None.