dev: bump to 0.1.71-dev – neue Plugins (Moflix, KKiste, HDFilme, Netzkino), SerienStream A-Z, VidHide-Fix

This commit is contained in:
2026-03-04 22:29:49 +01:00
parent ff30548811
commit 58da715723
7 changed files with 2460 additions and 3 deletions

View File

@@ -4086,7 +4086,16 @@ def _play_episode(
4500,
)
return
final_link = resolved_link or link
if not resolved_link:
_log("Stream konnte nicht aufgeloest werden.", xbmc.LOGWARNING)
xbmcgui.Dialog().notification(
"Wiedergabe",
"Stream konnte nicht aufgeloest werden.",
xbmcgui.NOTIFICATION_INFO,
3000,
)
return
final_link = resolved_link
final_link = normalize_resolved_stream_url(final_link, source_url=link)
err = _resolveurl_last_error()
if _is_cloudflare_challenge_error(err) and final_link.strip() == link.strip():
@@ -4217,7 +4226,16 @@ def _play_episode_url(
4500,
)
return
final_link = resolved_link or link
if not resolved_link:
_log("Stream konnte nicht aufgeloest werden.", xbmc.LOGWARNING)
xbmcgui.Dialog().notification(
"Wiedergabe",
"Stream konnte nicht aufgeloest werden.",
xbmcgui.NOTIFICATION_INFO,
3000,
)
return
final_link = resolved_link
final_link = normalize_resolved_stream_url(final_link, source_url=link)
err = _resolveurl_last_error()
if _is_cloudflare_challenge_error(err) and final_link.strip() == link.strip():