diff options
Diffstat (limited to 'src/Http/Controllers/ScormPlayerController.php')
-rw-r--r-- | src/Http/Controllers/ScormPlayerController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Http/Controllers/ScormPlayerController.php b/src/Http/Controllers/ScormPlayerController.php index 7c801c9..a15f0a4 100644 --- a/src/Http/Controllers/ScormPlayerController.php +++ b/src/Http/Controllers/ScormPlayerController.php @@ -48,7 +48,7 @@ class ScormPlayerController extends Controller public function serveModule(string $uuid, string $path) { - $path = Storage::disk('scorm-local')->path("{$uuid}/{$path}"); + $path = Storage::disk(config('scorm.disk'))->path("{$uuid}/{$path}"); $mime = MimeType::from($path); try { |