From 3d9db381e8bec24e6eeffcfe4481b941878b1a57 Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 6 Aug 2023 21:27:56 +0300 Subject: [PATCH] fix CRAWL_MANIFEST_API_VERSION --- crontab/crawler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crontab/crawler.php b/crontab/crawler.php index 10439ae..574624e 100644 --- a/crontab/crawler.php +++ b/crontab/crawler.php @@ -210,7 +210,7 @@ foreach ($db->getHostCrawlQueue(CRAWL_HOST_LIMIT, time() - CRAWL_HOST_SECONDS_OF } // Skip processing on API version not compatible - if ($remoteManifest->result->api->version !== API_VERSION) { + if ($remoteManifest->result->api->version !== CRAWL_MANIFEST_API_VERSION) { continue; }