From ba65dfeb75f54ac23130991af4d83bbfe01b6ac4 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Tue, 16 Apr 2019 20:03:29 +0200 Subject: [PATCH] If anime is not found you can type the TVDB_ID --- plugin.video.alfa/channels/autorenumber.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugin.video.alfa/channels/autorenumber.py b/plugin.video.alfa/channels/autorenumber.py index 32475134..0a2af8a8 100644 --- a/plugin.video.alfa/channels/autorenumber.py +++ b/plugin.video.alfa/channels/autorenumber.py @@ -44,6 +44,9 @@ def config_item(item): tvdb.find_and_set_infoLabels(item) data = '' data = add_season(data) + if not item.infoLabels['tvdb_id']: + heading = 'TVDB ID' + item.infoLabels['tvdb_id'] = platformtools.dialog_numeric(0, heading) data.append(item.infoLabels['tvdb_id']) write_data(item.from_channel, item.show, data)