From 844a7225eb4ee0165e6ec6f8bbecf9dc79708b49 Mon Sep 17 00:00:00 2001 From: Paul Leclercq Date: Fri, 3 May 2024 12:58:41 +0200 Subject: [PATCH] fix(program): update radio boolean --- postgres/schemas/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres/schemas/models.py b/postgres/schemas/models.py index 9f78405e..acf75216 100644 --- a/postgres/schemas/models.py +++ b/postgres/schemas/models.py @@ -178,6 +178,7 @@ def update_program_metadata(engine): 'channel_title': item['channel_title'], 'infocontinue': item['infocontinue'], 'public': item['public'], + 'radio': item['radio'], 'duration_minutes': int(item['duration']), 'weekday': int(item['weekday']), 'channel_program': item['program_name'],