aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Schauer2021-04-03 23:51:54 +0200
committerLukas Schauer2021-04-03 23:51:54 +0200
commit9c95a3f1268eb03af76b64a385ee7c121688c7c6 (patch)
tree0565c8370b47bb5522242c0acb4ab6741e1a2b45
parente3cd9d55f70709dc6f8f0a13c53a607b6962a6d5 (diff)
fix hls path
-rw-r--r--model/Stream.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Stream.php b/model/Stream.php
index 628dd57..9166e91 100644
--- a/model/Stream.php
+++ b/model/Stream.php
@@ -138,7 +138,7 @@ class Stream
return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], rawurlencode($this->getRoom()->getStream()).'_'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.webm']);
case 'hls':
- return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'hls', rawurlencode($this->getRoom()->getStream()).'_'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.m3u8']);
+ return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'hls', rawurlencode($this->getRoom()->getStream()).'/'.rawurlencode($this->getLanguage()).'_'.rawurlencode($selection).'.m3u8']);
}
return null;