Sleep longer
This commit is contained in:
parent
a2b145e4ec
commit
b045c49ad0
1 changed files with 3 additions and 3 deletions
|
@ -1620,7 +1620,7 @@ class LibrarySync(Thread):
|
||||||
try:
|
try:
|
||||||
message = queue.get(block=False)
|
message = queue.get(block=False)
|
||||||
except Queue.Empty:
|
except Queue.Empty:
|
||||||
xbmc.sleep(100)
|
xbmc.sleep(300)
|
||||||
continue
|
continue
|
||||||
# Got a message from PMS; process it
|
# Got a message from PMS; process it
|
||||||
else:
|
else:
|
||||||
|
@ -1630,9 +1630,9 @@ class LibrarySync(Thread):
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
# Still sleep if backgroundsync disabled
|
# Still sleep if backgroundsync disabled
|
||||||
xbmc.sleep(100)
|
xbmc.sleep(300)
|
||||||
|
|
||||||
xbmc.sleep(100)
|
xbmc.sleep(300)
|
||||||
|
|
||||||
# doUtils could still have a session open due to interrupted sync
|
# doUtils could still have a session open due to interrupted sync
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue