From 3c6e486c7701aede7fed38d79a4023e32647147c Mon Sep 17 00:00:00 2001 From: Jacob Grahn Date: Sun, 29 Sep 2024 21:21:10 -0400 Subject: [PATCH] fix out-of-order check --- functions/cron/cron_fns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/cron/cron_fns.php b/functions/cron/cron_fns.php index e4ae5401e..b6b9befb9 100644 --- a/functions/cron/cron_fns.php +++ b/functions/cron/cron_fns.php @@ -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; }