From f7639a732115df30cebf9347643b28dc943eb473 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Mon, 4 Jul 2022 17:05:47 +0200 Subject: [PATCH] =?UTF-8?q?Disabilita=20changelog=20all'avvio=20se=20"Noti?= =?UTF-8?q?fiche=20aggiornamenti"=20=C3=A8=20disabilitato?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platformcode/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformcode/launcher.py b/platformcode/launcher.py index d9384667..d79394c4 100644 --- a/platformcode/launcher.py +++ b/platformcode/launcher.py @@ -22,7 +22,7 @@ def start(): try: with open(config.changelogFile, 'r') as fileC: changelog = fileC.read() - if changelog.strip(): + if changelog.strip() and config.get_setting("addon_update_message"): platformtools.dialog_ok('Kodi on Demand', 'Aggiornamenti applicati:\n' + changelog) filetools.remove(config.changelogFile) except: