fix: Don't use the $url property

It is not reliable
This commit is contained in:
Pierre Rudloff 2019-04-21 22:20:05 +02:00
parent ebed2cea88
commit 226f1b8380
2 changed files with 4 additions and 4 deletions

View file

@ -397,7 +397,7 @@ class FrontController
$client = new Client();
$stream = $client->request(
'GET',
$this->video->url,
$this->video->getUrl(),
[
'stream' => true,
'headers' => ['Range' => $request->getHeader('Range')],