Skip to content

Commit

Permalink
fix broken model name for VU+ 4K SE models
Browse files Browse the repository at this point in the history
  • Loading branch information
WanWizard committed Dec 15, 2018
1 parent b412bf4 commit e6faed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/controllers/models/owibranding.py
Expand Up @@ -187,7 +187,7 @@ def getAllInfo():
f = open("/proc/stb/info/vumodel", 'r')
procmodel = f.readline().strip()
f.close()
model = procmodel.title().replace("olose", "olo SE").replace("olo2se", "olo2 SE").replace("2", "²")
model = procmodel.title().replace("olose", "olo SE").replace("olo2se", "olo2 SE").replace("2", "²").replace("4Kse", "4K SE")
elif fileExists("/proc/boxtype"):
f = open("/proc/boxtype", 'r')
procmodel = f.readline().strip().lower()
Expand Down

0 comments on commit e6faed1

Please sign in to comment.