We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you're dynamically adding the config for the storage disk cloudinary you're overwriting any possible settings that a user may have added.
cloudinary
cloudinary-laravel/src/CloudinaryServiceProvider.php
Lines 160 to 177 in 7bb0615
You probably want something like:
if (! $this->app['config']->has('filesystems.disks.cloudinary')) { $this->app['config']['filesystems.disks.cloudinary'] = ['driver' => 'cloudinary']; }
Or at the very least
if ($this->app['config']->has('filesystems.disks.cloudinary')) { $this->app['config']['filesystems.disks.cloudinary.driver'] = 'cloudinary'; } else { $this->app['config']['filesystems.disks.cloudinary'] = ['driver' => 'cloudinary']; }
The text was updated successfully, but these errors were encountered:
5a5cbef
Successfully merging a pull request may close this issue.
When you're dynamically adding the config for the storage disk
cloudinary
you're overwriting any possible settings that a user may have added.cloudinary-laravel/src/CloudinaryServiceProvider.php
Lines 160 to 177 in 7bb0615
You probably want something like:
Or at the very least
The text was updated successfully, but these errors were encountered: