Wait even longer to try to write to Kodi DB

- Hopefully fixes #593
This commit is contained in:
croneter 2019-01-19 09:35:32 +01:00
parent 04da3572cb
commit 9f0d0026e6

View file

@ -26,7 +26,7 @@ def catch_operationalerrors(method):
except utils.OperationalError as err:
if 'database is locked' not in err:
raise
if app.APP.monitor.waitForAbort(0.1):
if app.APP.monitor.waitForAbort(1):
# PKC needs to quit
return
attempts -= 1