From ae71d6c9396def3f6962e18bc802f76b02fb0f91 Mon Sep 17 00:00:00 2001 From: Uriziel Date: Mon, 7 Oct 2013 08:06:09 +0200 Subject: [PATCH] Fixed VLC path recognition to support upper-cased name --- 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 ab4ddfa..281ec23 100644 --- a/syncplay/players/vlc.py +++ b/syncplay/players/vlc.py @@ -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