Skip to content

Commit

Permalink
[TASK] Fixed PHP version Error
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepnitsan committed Dec 16, 2024
1 parent ec60a1e commit ec03646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Task/SendExtensionsReportTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected function getExtReoport(): bool

foreach ($allExtensions as $extensionKey => $nsExt) {
$updateAvailable = $nsExt['updateAvailable'] ?? '';
if (strtolower($nsExt['type']) == 'local' && $nsExt['key'] != 'ns_ext_compatibility' && !in_array($extensionKey, $excludeExtensions) && $updateAvailable && $nsExt['installed']) {
if (strtolower($nsExt['type']) == 'local' && $nsExt['key'] != 'ns_ext_compatibility' && !in_array($extensionKey, $excludeExtensions) && $updateAvailable && isset($nsExt['installed']) && $nsExt['installed']) {
$extArray = $extensionRepository->findByExtensionKeyOrderedByVersion($nsExt['key']);

if ($extArray[0]) {
Expand Down

0 comments on commit ec03646

Please sign in to comment.