From 6eec4883162669567417e6e645e3f18a7172d0b7 Mon Sep 17 00:00:00 2001 From: Etoh Date: Fri, 15 Jun 2018 09:33:42 +0100 Subject: [PATCH] Fixed missing VLC playerPath return --- syncplay/players/vlc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/syncplay/players/vlc.py b/syncplay/players/vlc.py index 9a0ebbb..1cc8943 100755 --- a/syncplay/players/vlc.py +++ b/syncplay/players/vlc.py @@ -287,6 +287,7 @@ class VlcPlayer(BasePlayer): return playerPath elif os.path.isfile(playerPath + u"VLCPortable.exe"): playerPath += u"VLCPortable.exe" + return playerPath elif os.path.isfile(playerPath + u"\\VLCPortable.exe"): playerPath += u"\\VLCPortable.exe" return playerPath