From ba1c257bb202e475bdc26a093123bb65497ddfa3 Mon Sep 17 00:00:00 2001 From: Yoson Chiu Date: Fri, 4 Aug 2017 03:18:37 -0400 Subject: [PATCH] Fixes #1693 (#1745) * Update AudioPlayer.js * Set timestamp to 0 as well. --- src/client/voice/player/AudioPlayer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client/voice/player/AudioPlayer.js b/src/client/voice/player/AudioPlayer.js index 2a264f9e6..ca0f759ff 100644 --- a/src/client/voice/player/AudioPlayer.js +++ b/src/client/voice/player/AudioPlayer.js @@ -77,6 +77,8 @@ class AudioPlayer extends EventEmitter { dispatcher.destroy('end'); } this.currentStream = {}; + this.streamingData.pausedTime = 0; + this.streamingData.timestamp = 0; } /**