Fix:
default.py Zeile 313:
match_vids=re.compile('<div class=".+?f1_(.+?) .+?<img.+?src="(.+?)".+?href="(.+?)".+?<h2>(.+?)</h2>.+?<span class="time live_countdown".+?>(.+?)</span>.+?<div class="streamdesc.+?>(.+?)</div>', re.DOTALL).findall(some_vids)
ersetzen mit
match_vids=re.compile('<div class=".+?f1_(.+?) .+?<img.+?src="(.+?)".+?href="(.+?)".+?<h2>(.+?)</h2>.+?<span class="time live_countdown.*?".+?>(.+?)</span>.+?<div class="streamdesc.+?>(.+?)</div>', re.DOTALL).findall(some_vids)
Die haben das Markup geringfügig geändert.
Ich hoffe membrane schlägt mich nicht, weil ich hier seinen Code angreife.