Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhj authored Jun 26, 2021
1 parent 9aeede6 commit 5edfde2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Migration/ThemeMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private function persistTheme(string $themeName, array $config, string $manifest
// Prevent array-access error when theme not found
$row = false === $row ? [] : $row;

if ($manifestHash === $row['manifestHash'] ?? '') {
if ($manifestHash === ($row['manifestHash'] ?? '')) {
return false;
}

Expand Down

0 comments on commit 5edfde2

Please sign in to comment.