Skip to content

Commit

Permalink
Merge pull request #4 from ibndawood/fix/wc-compat-check
Browse files Browse the repository at this point in the history
Fix/wc compat check
  • Loading branch information
ibndawood authored Aug 25, 2023
2 parents 23df5f1 + 2678aff commit 67fa700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/php/compat-checker/src/Checks/WCCompatibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private function is_wc_compatible() {
$wc_version = $this->get_wc_version();
$wc_version_required = $this->plugin_data['RequiresWC'];

if ( ! empty( $wc_version_required ) ) {
if ( empty( $wc_version_required ) ) {
return true;
}

Expand Down

0 comments on commit 67fa700

Please sign in to comment.