diff --git a/lib/ConfigFunctions.py b/lib/ConfigFunctions.py index d555da5..b498073 100644 --- a/lib/ConfigFunctions.py +++ b/lib/ConfigFunctions.py @@ -129,6 +129,10 @@ def CheckConfigForAllKeys(app_path): if(config.has_option('SystemGenerated','blackhole_torrent_enabled') == False): config.set('SystemGenerated','blackhole_torrent_enabled','0') changesMade = True + + if(config.has_option('SystemGenerated','torrent_kat_enabled') == False): + config.set('SystemGenerated','torrent_kat_enabled','0') + changesMade = True if(config.has_option('SystemGenerated','api_key') == False): apiKey = base64.b64encode(hashlib.sha256( str(random.getrandbits(256)) ).digest(), random.choice(['rA','aZ','gQ','hH','hG','aR','DD'])).rstrip('==') diff --git a/lib/Constants.py b/lib/Constants.py index 2bf4737..d522348 100644 --- a/lib/Constants.py +++ b/lib/Constants.py @@ -1,2 +1,2 @@ def VersionNumber(): - return "1.1.11.0" + return "1.1.12.0"