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 9bc9c48 commit 758c174Copy full SHA for 758c174
app/Jobs/ProcessApps.php
@@ -47,7 +47,9 @@ public function handle()
47
foreach ($items as $item) {
48
if (! file_exists(app_path('SupportedApps/'.Item::nameFromClass($item->class)))) {
49
$app = Application::where('class', $item->class)->first();
50
- Application::getApp($app->appid);
+ if ($app) {
51
+ Application::getApp($app->appid);
52
+ }
53
}
54
55
config/app.php
@@ -14,7 +14,7 @@
14
*/
15
16
'name' => env('APP_NAME', 'Heimdall'),
17
- 'version' => '2.4.9',
+ 'version' => '2.4.10',
18
19
/*
20
|--------------------------------------------------------------------------
0 commit comments