diff options
author | Anton Schubert | 2017-12-21 12:47:16 +0100 |
---|---|---|
committer | MaZderMind | 2018-01-24 23:30:00 +0100 |
commit | 26158ebc51e19780a69b35f15256c80c836ef27e (patch) | |
tree | e5694021156c52ca628747b7128b3eab6b5b123a | |
parent | d83d5df9c267038938383451f05248493a1c59eb (diff) |
fix hls playlist url
-rw-r--r-- | model/Room.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index 017a2ca..a436c93 100644 --- a/model/Room.php +++ b/model/Room.php @@ -164,7 +164,7 @@ class Room } public function getHLSPlaylistUrl() { - return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.m3u8'; + return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getStream()).'_native.m3u8'; } public function getDashManifestUrl() { |