If action is "flag" and "--show_size" OR "plex_delete" is not set, then the show is "[NOT FOUND]"
duckpuppy opened this issue · 1 comments
duckpuppy commented
if show_size and os.path.isfile(file):
FlaggedSize += os.stat(file).st_size
elif not Settings['plex_delete']:
log("[NOT FOUND] " + file)
return False
The above code from the flagging code seems to say "If show_size is not set AND plex_delete is not set, then log NOT FOUND". Is that how it's supposed to work, or am I reading that wrong?