* Fix undefined method.

This commit is contained in:
dingguodong
2024-04-07 10:49:55 +08:00
parent ee2c485c5a
commit 2031ef5f05
+1 -1
View File
@@ -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);
}