Fixed VLC path recognition to support upper-cased name

This commit is contained in:
Uriziel 2013-10-07 08:06:09 +02:00
parent c70106c282
commit ae71d6c939

View File

@ -168,7 +168,7 @@ class VlcPlayer(BasePlayer):
@staticmethod
def isValidPlayerPath(path):
if("vlc" in path and VlcPlayer.getExpandedPath(path)):
if("vlc" in path.lower() and VlcPlayer.getExpandedPath(path)):
return True
return False