diff --git a/data/interfaces/default/images/logo-circle.png b/data/interfaces/default/images/logo-circle.png index 8c9799d8..3cf72642 100644 Binary files a/data/interfaces/default/images/logo-circle.png and b/data/interfaces/default/images/logo-circle.png differ diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index d52fa597..657e7f18 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -1693,7 +1693,7 @@ class GROWL(Notifier): # Send it, including an image image_file = os.path.join(str(plexpy.PROG_DIR), - "data/interfaces/default/images/logo.png") + "data/interfaces/default/images/logo-circle.png") with open(image_file, 'rb') as f: image = f.read() @@ -2399,7 +2399,7 @@ class PLEX(Notifier): if self.config['image']: image = self.config['image'] else: - image = os.path.join(plexpy.DATA_DIR, os.path.abspath("data/interfaces/default/images/logo.png")) + image = os.path.join(plexpy.DATA_DIR, os.path.abspath("data/interfaces/default/images/logo-circle.png")) for host in hosts: logger.info(u"Tautulli Notifiers :: Sending notification command to {name} @ {host}".format(name=self.NAME, host=host)) @@ -3342,7 +3342,7 @@ class XBMC(Notifier): if self.config['image']: image = self.config['image'] else: - image = os.path.join(plexpy.DATA_DIR, os.path.abspath("data/interfaces/default/images/logo.png")) + image = os.path.join(plexpy.DATA_DIR, os.path.abspath("data/interfaces/default/images/logo-circle.png")) for host in hosts: logger.info(u"Tautulli Notifiers :: Sending notification command to XMBC @ " + host)