mirror of
https://github.com/koel/koel
synced 2024-11-12 23:47:09 +00:00
fix: ensure default storage is local (#1840)
This commit is contained in:
parent
dd922b668a
commit
de13776fbf
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'storage_driver' => env('STORAGE_DRIVER', 'local'),
|
||||
'storage_driver' => env('STORAGE_DRIVER', 'local') ?: 'local',
|
||||
|
||||
'media_path' => env('MEDIA_PATH'),
|
||||
|
||||
|
|
Loading…
Reference in a new issue