From fc7f4fc9747517fd782591a7247f3e271ab13fe7 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:23:15 -0500 Subject: [PATCH] feat: add imdb id to page files (#1823) --- src/updater.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/updater.py b/src/updater.py index 9df6e9f0927..54588b03b87 100644 --- a/src/updater.py +++ b/src/updater.py @@ -183,6 +183,7 @@ def queue_handler(item: tuple) -> None: if item[0] == 'movie': databases[item[0]]['all_items'].append(dict( id=data['id'], + imdb_id=data.get('imdb_id'), # imdb_id may not always be present title=data['title'] )) else: