From 16499fc674b2a6aef7eab0bf07ff95e786c9afbd Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Mon, 14 Oct 2024 21:55:58 -0400 Subject: [PATCH] Fixed issue introduced in upgrade process in beta.3 --- bazarr/subtitles/upgrade.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bazarr/subtitles/upgrade.py b/bazarr/subtitles/upgrade.py index a78ca950d..d094d7caa 100644 --- a/bazarr/subtitles/upgrade.py +++ b/bazarr/subtitles/upgrade.py @@ -44,6 +44,7 @@ def upgrade_subtitles(): 'sonarrSeriesId': x.sonarrSeriesId, 'subtitles_path': x.subtitles_path, 'path': x.path, + 'profileId': x.profileId, 'external_subtitles': [y[1] for y in ast.literal_eval(x.external_subtitles) if y[1]], 'upgradable': bool(x.upgradable), } for x in database.execute( @@ -135,6 +136,7 @@ def upgrade_subtitles(): 'score': x.score, 'radarrId': x.radarrId, 'path': x.path, + 'profileId': x.profileId, 'subtitles_path': x.subtitles_path, 'external_subtitles': [y[1] for y in ast.literal_eval(x.external_subtitles) if y[1]], 'upgradable': bool(x.upgradable),