From 5b699825211c34581c4ec15b295a42891ecf1bc3 Mon Sep 17 00:00:00 2001 From: Nikolaj Danger Date: Mon, 8 Feb 2021 11:09:56 +0100 Subject: [PATCH] :bug: --- funcs/funcs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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