dev: bump to 0.1.88.0-dev TMDb Helper Player, Metadaten-Fix, Menü-Icons, Filmpalast veeve

This commit is contained in:
2026-04-10 14:07:01 +02:00
parent 29da28ebc3
commit a8a85ef14f
22 changed files with 301 additions and 44 deletions

View File

@@ -893,8 +893,8 @@ class FilmpalastPlugin(BasisPlugin):
for block in soup.select("ul.currentStreamLinks"):
host_name_node = block.select_one("li.hostBg .hostName")
host_name = self._normalize_hoster_name(host_name_node.get_text(" ", strip=True) if host_name_node else "")
play_anchor = block.select_one("li.streamPlayBtn a[href], a.button.iconPlay[href]")
href = (play_anchor.get("href") if play_anchor else "") or ""
play_anchor = block.select_one("li.streamPlayBtn a[href], li.streamPlayBtn a[data-player-url], a.button.iconPlay[href]")
href = (play_anchor.get("href") or play_anchor.get("data-player-url") if play_anchor else "") or ""
play_url = _absolute_url(href).strip()
if not play_url:
continue