From 0e05cedc8fb0787b0b6c0128170130184ef48b48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20M=C3=BCller?= Date: Mon, 30 Jul 2018 14:56:47 +0200 Subject: [PATCH] Revert "Try to fix URLs for WM2018 streams" This reverts commit 4116f5682ce59ae8fadf2048d93e5df11ab1cfda. --- static/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/main.js b/static/main.js index b52863b..27576f6 100644 --- a/static/main.js +++ b/static/main.js @@ -265,8 +265,8 @@ function killAllAudio() { function wm2018(channel) { if (channel === "ard") { - ajaxRequest("/?video=https://www.ardmediathek.de/tv/live?kanal=208"); + ajaxRequest("/?video="+encodeURI("https://www.ardmediathek.de/tv/live?kanal=208")); } else if (channel === "zdf") { - ajaxRequest("/?video=https://www.zdf.de/sender/zdf/zdf-live-beitrag-100.html"); + ajaxRequest("/?video="+encodeURI("https://www.zdf.de/sender/zdf/zdf-live-beitrag-100.html")); } }