diff options
author | Lukas Schauer | 2021-04-03 23:51:54 +0200 |
---|---|---|
committer | Lukas Schauer | 2021-04-03 23:51:54 +0200 |
commit | 9c95a3f1268eb03af76b64a385ee7c121688c7c6 (patch) | |
tree | 0565c8370b47bb5522242c0acb4ab6741e1a2b45 /model/Stream.php | |
parent | e3cd9d55f70709dc6f8f0a13c53a607b6962a6d5 (diff) |
fix hls path
Diffstat (limited to 'model/Stream.php')
-rw-r--r-- | model/Stream.php | 2 |
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; |