Fixed missing VLC playerPath return

This commit is contained in:
Etoh 2018-06-15 09:33:42 +01:00 committed by albertosottile
parent 245b997393
commit 6eec488316

View File

@ -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