Gotten rid of some emby dialog references
This commit is contained in:
parent
124a5a10a6
commit
50e45e95cc
1 changed files with 8 additions and 6 deletions
14
service.py
14
service.py
|
@ -176,11 +176,13 @@ class Service():
|
||||||
else:
|
else:
|
||||||
add = ""
|
add = ""
|
||||||
xbmcgui.Dialog().notification(
|
xbmcgui.Dialog().notification(
|
||||||
heading="Emby server",
|
heading=self.addonName,
|
||||||
message="Welcome %s%s!" % (user.currUser, add),
|
message="Welcome %s%s"
|
||||||
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
% (user.currUser, add),
|
||||||
time=2000,
|
icon="special://home/addons/plugin.video."
|
||||||
sound=False)
|
"plexkodiconnect/icon.png",
|
||||||
|
time=2000,
|
||||||
|
sound=False)
|
||||||
|
|
||||||
# Start monitoring kodi events
|
# Start monitoring kodi events
|
||||||
if not self.kodimonitor_running:
|
if not self.kodimonitor_running:
|
||||||
|
@ -253,7 +255,7 @@ class Service():
|
||||||
break
|
break
|
||||||
# Alert the user that server is online.
|
# Alert the user that server is online.
|
||||||
xbmcgui.Dialog().notification(
|
xbmcgui.Dialog().notification(
|
||||||
heading="Emby server",
|
heading=self.addonName,
|
||||||
message="Server is online.",
|
message="Server is online.",
|
||||||
icon="special://home/addons/plugin.video."
|
icon="special://home/addons/plugin.video."
|
||||||
"plexkodiconnect/icon.png",
|
"plexkodiconnect/icon.png",
|
||||||
|
|
Loading…
Reference in a new issue