Skip to content

Commit

Permalink
Fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Apr 3, 2021
1 parent 2209e48 commit 7829b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BladeIconsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private function registerFactory(): void
);

foreach ($config['sets'] ?? [] as $set => $options) {
if (! isset($options['disk']) && ! $options['disk']) {
if (! isset($options['disk']) || ! $options['disk']) {
$paths = $options['paths'] ?? $options['path'] ?? [];

$options['paths'] = array_map(
Expand Down

0 comments on commit 7829b0b

Please sign in to comment.