Skip to content

Commit

Permalink
cast library_update_delay to integer...
Browse files Browse the repository at this point in the history
  • Loading branch information
scakemyer committed Mar 15, 2016
1 parent 96cc1c5 commit dfeea39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/site-packages/quasar/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def library_thread():
limit = 8 * 60 * 60
count = limit - ADDON.getSetting("library_update_delay")
count = limit - int(ADDON.getSetting("library_update_delay"))
while not xbmc.abortRequested:
# 8 hours passed - Update Library
if count >= limit:
Expand Down

0 comments on commit dfeea39

Please sign in to comment.