From 58ab6432f6ae126d3d89002371a70daf353fd12c Mon Sep 17 00:00:00 2001 From: im85288 Date: Tue, 16 Jun 2015 20:38:36 +0100 Subject: [PATCH] remove beta support and use latest as default so that future changes hopefully are not needed --- resources/lib/Utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/resources/lib/Utils.py b/resources/lib/Utils.py index 40bba457..3392a2ed 100644 --- a/resources/lib/Utils.py +++ b/resources/lib/Utils.py @@ -73,12 +73,7 @@ def getKodiVideoDBPath(): dbVersion = "90" elif kodibuild.startswith("15"): # Isengard - if "BETA1" in kodibuild: - # Beta 1 - dbVersion = "92" - elif "BETA2" in kodibuild: - # Beta 2 - dbVersion = "93" + dbVersion = "93" else: # Not a compatible build xbmc.log("This Kodi version is incompatible. Current version: %s" % kodibuild)