Skip to content

Commit

Permalink
Merge branch 'release/4.8.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Feb 26, 2024
2 parents 6a7e5f3 + 7ec81db commit 75614f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ public function actionLicensingIssues(array $issues, string $hash): Response

$cookie = $this->request->getCookies()->get(App::licenseShunCookieName());
$data = $cookie ? Json::decode($cookie->value) : null;
if ($data['hash'] !== $hash) {
if (($data['hash'] ?? null) !== $hash) {
$data = null;
}

Expand Down

0 comments on commit 75614f6

Please sign in to comment.