Fixed VLC path recognition to support upper-cased name
This commit is contained in:
parent
c70106c282
commit
ae71d6c939
@ -168,7 +168,7 @@ class VlcPlayer(BasePlayer):
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def isValidPlayerPath(path):
|
def isValidPlayerPath(path):
|
||||||
if("vlc" in path and VlcPlayer.getExpandedPath(path)):
|
if("vlc" in path.lower() and VlcPlayer.getExpandedPath(path)):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user