From f39461b331a619eb12be002ed3d8e86211bf170f Mon Sep 17 00:00:00 2001 From: Daniel Ahn Date: Sat, 21 Jul 2018 10:43:18 -0700 Subject: [PATCH] Forgot the and statement --- syncplay/players/vlc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/vlc.py b/syncplay/players/vlc.py index c3cef67..0c140a6 100755 --- a/syncplay/players/vlc.py +++ b/syncplay/players/vlc.py @@ -226,7 +226,7 @@ class VlcPlayer(BasePlayer): self._paused = bool(value != 'playing') if (value != "no-input" and not self._filechanged) else self._client.getGlobalPaused() diff = time.time() - self._lastVLCPositionUpdate if self._lastVLCPositionUpdate else 0 if ( - self._paused == False + self._paused == False and self._position == self._previousPreviousPosition and self._previousPosition == self._position and self._duration > constants.PLAYLIST_LOAD_NEXT_FILE_MINIMUM_LENGTH and