Skip to content

Commit

Permalink
Fixes for licenseStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
AltamashShaikh committed Sep 23, 2024
1 parent fbd05c3 commit d011dce
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 51 deletions.
2 changes: 1 addition & 1 deletion plugins/Marketplace/Consumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function getConsumerPluginLicenseStatus(): array
$consumer = $this->getConsumer();
if (!empty($consumer['licenses'])) {
foreach ($consumer['licenses'] as $license) {
$this->pluginLicenseStatus[$license['plugin']['name']] = ['licenseStatus' => $license['status']];
$this->pluginLicenseStatus[$license['plugin']['name']] = $license['status'];
}
}
}
Expand Down
Loading

0 comments on commit d011dce

Please sign in to comment.