Svenb
Ersetze in der default.py in Zeile 187
den Eintrag:
if "Videos" in entry or "Clips" in entry:
mit
if "Videos" in entry or "Clips" in entry or "Übersicht" in entry:
Deine Änderungen mache rückgängig-Dann hast Du Kabel1 Sendungen wieder komplett und es werden alle Folgen Mein Lokal ... angezeigt
Der komplette Block sieht dann so aus:
ef listShowsKabel1():
content = opener.open(baseUrlKabel1+"/tv").read()
spl = content.split('<li class="trackable_teaser"')
for i in range(1, len(spl), 1):
entry = spl
if "Videos" in entry or "Clips" in entry or "Übersicht" in entry:
match = re.compile('href="(.+?)"', re.DOTALL).findall(entry)
url = baseUrlKabel1+match[0]
match = re.compile('title="(.+?)"', re.DOTALL).findall(entry)
title = match[0]
title = cleanTitle(title)
match = re.compile('src="(.+?)"', re.DOTALL).findall(entry)
thumb = baseUrlKabel1+match[0]
addDir(title, url, 'listShowKabel1', thumb)
xbmcplugin.endOfDirectory(pluginhandle)
zonick