mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Modify on-wake logic
This commit is contained in:
parent
3e08f5ab8a
commit
88889716da
1 changed files with 9 additions and 11 deletions
|
@ -135,6 +135,15 @@ class Service(object):
|
||||||
|
|
||||||
elif not self.startup:
|
elif not self.startup:
|
||||||
self.startup = self._startup()
|
self.startup = self._startup()
|
||||||
|
|
||||||
|
if not self.websocket_running:
|
||||||
|
# Start the Websocket Client
|
||||||
|
self.websocket_running = True
|
||||||
|
self.websocket_thread.start()
|
||||||
|
if not self.library_running:
|
||||||
|
# Start the syncing thread
|
||||||
|
self.library_running = True
|
||||||
|
self.library_thread.start()
|
||||||
else:
|
else:
|
||||||
|
|
||||||
if (user_client.get_user() is None) and self.warn_auth:
|
if (user_client.get_user() is None) and self.warn_auth:
|
||||||
|
@ -190,14 +199,6 @@ class Service(object):
|
||||||
icon="{emby}",
|
icon="{emby}",
|
||||||
time=2000,
|
time=2000,
|
||||||
sound=False)
|
sound=False)
|
||||||
|
|
||||||
# Start the Websocket Client
|
|
||||||
self.websocket_running = True
|
|
||||||
self.websocket_thread.start()
|
|
||||||
# Start the syncing thread
|
|
||||||
self.library_running = True
|
|
||||||
self.library_thread.start()
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def _server_online_check(self):
|
def _server_online_check(self):
|
||||||
|
@ -236,9 +237,6 @@ class Service(object):
|
||||||
self.library_thread.stopThread()
|
self.library_thread.stopThread()
|
||||||
self.library_thread = librarysync.LibrarySync()
|
self.library_thread = librarysync.LibrarySync()
|
||||||
self.library_running = False
|
self.library_running = False
|
||||||
# set flag to reset startup process
|
|
||||||
self.startup = False
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# Server is online
|
# Server is online
|
||||||
if not self.server_online:
|
if not self.server_online:
|
||||||
|
|
Loading…
Reference in a new issue