From 3125032e824803ab3a9d2295146defc2cde5932f Mon Sep 17 00:00:00 2001 From: et0h Date: Sat, 2 May 2020 16:23:50 +0100 Subject: [PATCH] Add exception handling to media directory info update thread (#298) --- syncplay/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syncplay/client.py b/syncplay/client.py index 5b60888..817047e 100755 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -1975,6 +1975,8 @@ class FileSwitchManager(object): if self.mediaFilesCache != newMediaFilesCache: self.mediaFilesCache = newMediaFilesCache self.newInfo = True + except Exception as e: + self._client.ui.showDebugMessage(str(e)) finally: self.currentlyUpdating = False