From 1156a4efa1683d1b2b411006a60105f6bd4c4c1b Mon Sep 17 00:00:00 2001 From: croneter Date: Tue, 11 Dec 2018 12:54:14 +0100 Subject: [PATCH] Don't show sync messages while Kodi is playing something - Fixes #570 --- resources/lib/sync.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/lib/sync.py b/resources/lib/sync.py index ab57fa72..9b51cfbb 100644 --- a/resources/lib/sync.py +++ b/resources/lib/sync.py @@ -51,6 +51,9 @@ class Sync(backgroundthread.KillableThread): icon: "plex": shows Plex icon "error": shows Kodi error icon """ + if app.APP.player.isPlaying(): + LOG.info('Playing media - not showing note: %s', message) + return if not force and app.SYNC.sync_dialog is not True and self.force_dialog is not True: return if icon == "plex":