From 2031ef5f054e6c29eb29a03e5fda8d4482368a94 Mon Sep 17 00:00:00 2001 From: dingguodong Date: Sun, 7 Apr 2024 10:49:26 +0800 Subject: [PATCH] * Fix undefined method. --- module/repo/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/repo/zen.php b/module/repo/zen.php index e08e78aa9b..9f2ba145d8 100644 --- a/module/repo/zen.php +++ b/module/repo/zen.php @@ -1378,7 +1378,7 @@ class repoZen extends repo elseif($this->strposAry($lastLine, $this->config->repo->repoSyncLog->total) !== false) { $logContent = file_get_contents($logFile); - if($this->strposAry($logContent, $this->config->repo->repoSyncLog->finishCount) !== false and $this->repo->strposAry($logContent, $this->config->repo->repoSyncLog->finishCompress) !== false) + if($this->strposAry($logContent, $this->config->repo->repoSyncLog->finishCount) !== false and $this->strposAry($logContent, $this->config->repo->repoSyncLog->finishCompress) !== false) { @unlink($logFile); }