From 6d54e5b9ba8350d811f48e6a6a519ecf4d99f9f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Sat, 12 Jul 2025 16:17:58 +0200 Subject: [PATCH] Fix missing `deleteDanglingCommitdata` after `deleteOldSources` --- www/extern/egg/ExtendedGitGraph2.php | 1 + 1 file changed, 1 insertion(+) diff --git a/www/extern/egg/ExtendedGitGraph2.php b/www/extern/egg/ExtendedGitGraph2.php index a319f12..6acafb5 100644 --- a/www/extern/egg/ExtendedGitGraph2.php +++ b/www/extern/egg/ExtendedGitGraph2.php @@ -79,6 +79,7 @@ class ExtendedGitGraph2 implements ILogger $this->db->beginTransaction(); $this->db->deleteOldSources(array_map(function (IRemoteSource $v){ return $v->getName(); }, $this->sources)); + $this->db->deleteDanglingCommitdata(); $this->db->commitTransaction(); $this->proclog("Update finished.");