Skip to content

Commit

Permalink
Flip condition so it works
Browse files Browse the repository at this point in the history
  • Loading branch information
daftspunk committed Sep 17, 2024
1 parent 808dc6c commit 9527614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Database/Traits/Multisite.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public function isMultisiteSyncEnabled()
return false;
}

if (!is_array($this->propagatableSync)) {
if (is_array($this->propagatableSync)) {
return ($this->propagatableSync['sync'] ?? false) !== false;
}

Expand Down

0 comments on commit 9527614

Please sign in to comment.