mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Increase waitforabort timers
This commit is contained in:
parent
4413f469a3
commit
78d241a8c3
2 changed files with 2 additions and 2 deletions
|
@ -285,7 +285,7 @@ class Service(object):
|
|||
# Server went offline
|
||||
break
|
||||
|
||||
if self.monitor.waitForAbort(5):
|
||||
if self.monitor.waitForAbort(30):
|
||||
# Abort was requested while waiting. We should exit
|
||||
break
|
||||
|
||||
|
|
|
@ -364,7 +364,7 @@ class WebSocketClient(threading.Thread):
|
|||
if self._stop_websocket:
|
||||
break
|
||||
|
||||
if self.monitor.waitForAbort(5):
|
||||
if self.monitor.waitForAbort(10):
|
||||
# Abort was requested, exit
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in a new issue