From 3767fd3eec50642acd01fc1508ed1fdd7fb38984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Mon, 28 Aug 2023 02:35:04 +0200 Subject: [PATCH] Fix bug where EGG would only query first page of remote repositories --- www/extern/egg/RemoteSource.php | 1 + 1 file changed, 1 insertion(+) diff --git a/www/extern/egg/RemoteSource.php b/www/extern/egg/RemoteSource.php index 882cdc9..04324f5 100644 --- a/www/extern/egg/RemoteSource.php +++ b/www/extern/egg/RemoteSource.php @@ -191,6 +191,7 @@ abstract class StandardGitConnection implements IRemoteSource $this->logger->proclog("Found Repo in Remote: " . $jdata['full_name']); $result []= $db->getOrCreateRepository($jdata['html_url'], $jdata['full_name'], $this->name); + $count++; } if ($count === 0) break;