fixed urls when external storage is used

This commit is contained in:
carodej
2020-07-22 18:12:26 +02:00
parent 032f4f357a
commit 4ac81f1ceb

View File

@@ -160,10 +160,10 @@ function get_storage()
function is_storage_driver($driver)
{
if (is_array($driver)) {
return in_array(config('filesystem.default'), $driver);
return in_array(config('filesystems.default'), $driver);
}
return config('filesystem.default') === $driver;
return config('filesystems.default') === $driver;
}
/**