Added handling of created_manual, revert some file_path()

This commit is contained in:
Deon George
2020-01-05 18:02:32 +11:00
parent 0b6b3021fd
commit 270f63144b
4 changed files with 30 additions and 7 deletions

View File

@@ -65,6 +65,6 @@ class VideoController extends Controller
public function view(Video $o)
{
if ($o->isReadable())
(new VideoStream($o->filename))->start();
(new VideoStream($o->file_path()))->start();
}
}