diff --git a/src/main/java/de/presti/ree6/module/notifications/impl/TwitchSonic.java b/src/main/java/de/presti/ree6/module/notifications/impl/TwitchSonic.java index 53ec2a4c5..ae36eb093 100644 --- a/src/main/java/de/presti/ree6/module/notifications/impl/TwitchSonic.java +++ b/src/main/java/de/presti/ree6/module/notifications/impl/TwitchSonic.java @@ -132,7 +132,10 @@ public void run() { @Override public void unload() { - + twitchChannels.forEach(channel -> { + Main.getInstance().getNotifier().getTwitchClient().getClientHelper().disableStreamEventListener(channel.getIdentifier()); + Main.getInstance().getNotifier().getTwitchClient().getClientHelper().disableFollowEventListener(channel.getIdentifier()); + }); } @Override