* Adjust convertLog method for git and svn sync.

This commit is contained in:
caoyanyi
2023-12-22 16:58:59 +08:00
parent a914750eee
commit 5c827b63bd
4 changed files with 55 additions and 5 deletions
+3 -1
View File
@@ -127,9 +127,11 @@ class git extends control
}
$logs[$i][] = $line;
}
foreach($logs as $log)
{
$parsedLogs[] = $this->git->convertLog($log);
$log = $this->git->convertLog($log);
if($log) $parsedLogs[] = $log;
}
$this->loadModel('repo');