From 0301ec1495ef6828950559969805d075e13e68dd Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Sat, 18 Dec 2021 20:03:17 +0100 Subject: [PATCH] =?UTF-8?q?=C2=A7zdfhbbtv:=20fix=20video=20url?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/zdfhbbtv/zdfhbbtv.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/zdfhbbtv/zdfhbbtv.lua b/plugins/zdfhbbtv/zdfhbbtv.lua index a84034a..7533da9 100644 --- a/plugins/zdfhbbtv/zdfhbbtv.lua +++ b/plugins/zdfhbbtv/zdfhbbtv.lua @@ -645,14 +645,14 @@ function getZDFstream(tab) local m3u8 = streams.h264_aac_ts_http_m3u8_http local mpd = streams.h264_aac_mp4_http_mpd_http if maxRes > 1281 and mp4 and mp4.main and mp4.main.deu and mp4.main.deu.q3 then - tab.stream = mp4.main.deu.q3 + tab.stream = mp4.main.deu.q3.url break elseif maxRes < 1281 and mp4 and mp4.main and mp4.main.deu and mp4.main.deu.q1 then - tab.stream = mp4.main.deu.q1 + tab.stream = mp4.main.deu.q1.url elseif m3u8 and m3u8.main and m3u8.main.deu and m3u8.main.deu.q3 then - tab.stream , tab.audiostream = getVideoUrlM3U8(m3u8.main.deu.q3) + tab.stream , tab.audiostream = getVideoUrlM3U8(m3u8.main.deu.q3.url) elseif mpd and mpd.main and mpd.main.deu then - tab.stream = mpd.main.deu + tab.stream = mpd.main.deu.url end end end