fix: do comparison correctly again

This commit is contained in:
Anna 2022-02-03 11:41:42 -05:00
parent d30b57afd3
commit ef76d9925b
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ def last_update(info):
if info_mod > modified:
modified = int(info_mod)
if info_mod == 0:
if modified == 0:
modified = int(getmtime(latest))
if 'LastUpdate' not in plugin or modified != int(plugin['LastUpdate']):