From 50e45e95ccbbe1d3d138465c11bfbb4ece8042d3 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Fri, 22 Jan 2016 16:50:11 +0100 Subject: [PATCH] Gotten rid of some emby dialog references --- service.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/service.py b/service.py index 11307e1d..7e348f61 100644 --- a/service.py +++ b/service.py @@ -176,11 +176,13 @@ class Service(): else: add = "" xbmcgui.Dialog().notification( - heading="Emby server", - message="Welcome %s%s!" % (user.currUser, add), - icon="special://home/addons/plugin.video.plexkodiconnect/icon.png", - time=2000, - sound=False) + heading=self.addonName, + message="Welcome %s%s" + % (user.currUser, add), + icon="special://home/addons/plugin.video." + "plexkodiconnect/icon.png", + time=2000, + sound=False) # Start monitoring kodi events if not self.kodimonitor_running: @@ -253,7 +255,7 @@ class Service(): break # Alert the user that server is online. xbmcgui.Dialog().notification( - heading="Emby server", + heading=self.addonName, message="Server is online.", icon="special://home/addons/plugin.video." "plexkodiconnect/icon.png",