diff --git a/resources/language/English/strings.xml b/resources/language/English/strings.xml index 347fb2c4..023b37d4 100644 --- a/resources/language/English/strings.xml +++ b/resources/language/English/strings.xml @@ -248,6 +248,7 @@ Enable Netflix style next up notification - The number of seconds before the end to show the notification Show Emby Info dialog on play/select action + Suppress server connection message at boot @@ -265,5 +266,6 @@ Music Tracks Channels + diff --git a/resources/settings.xml b/resources/settings.xml index dadbd91f..80be2556 100644 --- a/resources/settings.xml +++ b/resources/settings.xml @@ -39,6 +39,8 @@ + + diff --git a/service.py b/service.py index 93ef1d8f..0657d3c4 100644 --- a/service.py +++ b/service.py @@ -195,7 +195,9 @@ class Service(): break self.server_online = True self.logMsg("Server is online and ready.", 1) - xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000) + addonSettings = xbmcaddon.Addon(id='plugin.video.emby') + if addonSettings.getSetting("supressConnectMsg")=="false": + xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000) WINDOW.setProperty("Server_online", "true") # Server is online, proceed.