From 264f07cf9b68f5b6718b1019f416fe78cc90fd3b Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Sat, 9 Apr 2016 16:31:40 +0200 Subject: [PATCH] Make sure _keepaliveInt is unset in _stopKeepalive. --- ts3query.iced | 1 + 1 file changed, 1 insertion(+) diff --git a/ts3query.iced b/ts3query.iced index 8189d2e..c80c6de 100644 --- a/ts3query.iced +++ b/ts3query.iced @@ -152,6 +152,7 @@ module.exports = class TS3ClientQuery extends EventEmitter _stopKeepalive: () => if @_keepaliveInt is not undefined clearInterval @_keepaliveInt + @_keepaliveInt = undefined _resetKeepalive: () => @_stopKeepalive()