From 63731811aebb05633e043484122dc52e1c0ad1d9 Mon Sep 17 00:00:00 2001 From: Et0h Date: Mon, 12 Oct 2015 13:58:44 +0100 Subject: [PATCH] Do not treat mplayerc.exe (Media Player Classic) as a synonym for mplayer2 --- syncplay/players/mplayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/players/mplayer.py b/syncplay/players/mplayer.py index dd35762..4c505a3 100644 --- a/syncplay/players/mplayer.py +++ b/syncplay/players/mplayer.py @@ -216,7 +216,7 @@ class MplayerPlayer(BasePlayer): @staticmethod def isValidPlayerPath(path): - if "mplayer" in path and MplayerPlayer.getExpandedPath(path): + if "mplayer" in path and MplayerPlayer.getExpandedPath(path) and not "mplayerc.exe" in path: # "mplayerc.exe" is Media Player Classic (not Home Cinema): return True return False