diff --git a/funcs/funcs.py b/funcs/funcs.py index fec6418..15dc4ee 100644 --- a/funcs/funcs.py +++ b/funcs/funcs.py @@ -88,11 +88,11 @@ class Funcs(): with open("resources/bedreNetflix/oldMessage"+str(channel.id),"r") as f: data = json.load(f) except: - return False, None + return False, None, None if data["messageID"] == message.id: if "imdbIds" in data: return True, True, data["imdbIds"] else: return True, False, data["imdbNames"] else: - return False, None \ No newline at end of file + return False, None, None \ No newline at end of file