We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cfa8b4 commit 14c559eCopy full SHA for 14c559e
src/Providers/TelegramGitNotifierServiceProvider.php
@@ -43,7 +43,7 @@ public function boot(): void
43
], 'config_jsons');
44
45
$jsonsPath = config('telegram-git-notifier.data_file.storage_folder');
46
- if (file_exists($jsonsPath)) {
+ if (is_string($jsonsPath) && file_exists($jsonsPath)) {
47
exec("chown -R www-data:www-data $jsonsPath");
48
}
49
0 commit comments