From 4fa0a9b9217c7b012dba4f050ec9397a4080b6f7 Mon Sep 17 00:00:00 2001 From: Et0h Date: Thu, 18 Jun 2015 14:46:39 +0100 Subject: [PATCH] Pass on mpv/youtube-dl out of date errors --- syncplay/players/mpv.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/syncplay/players/mpv.py b/syncplay/players/mpv.py index 09abe2a..4b79181 100644 --- a/syncplay/players/mpv.py +++ b/syncplay/players/mpv.py @@ -87,6 +87,9 @@ class OldMpvPlayer(MpvPlayer): self.reactor.callFromThread(self._client.ui.showErrorMessage, getMessage("mpv-version-error"), True) self.drop() + elif "[ytdl_hook] Your version of youtube-dl is too old" in line: + self._client.ui.showErrorMessage(line) + def _handleUnknownLine(self, line): self.mpvVersionErrorCheck(line) if "Playing: " in line: