Skip to content

Commit

Permalink
fix out-of-order check
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-grahn committed Sep 30, 2024
1 parent 94f3f75 commit 3c6e486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/cron/cron_fns.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function update_artifact($pdo)

// collect data
$artifacts = artifact_locations_select($pdo, true);
if (!isset($artifacts[0]) || !$arti_txt) {
if (!isset($artifacts[0])) {
return;
}

Expand Down

0 comments on commit 3c6e486

Please sign in to comment.