@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix an issue which could prevent new repositories from being marked imported.

+2 -1
+2 -1
src/applications/repository/daemon/PhabricatorRepositoryPullLocalDaemon.php
··· 283 283 // Look for any commit which hasn't imported. 284 284 $unparsed_commit = queryfx_one( 285 285 $repository->establishConnection('r'), 286 - 'SELECT * FROM %T WHERE repositoryID = %d AND importStatus != %d 286 + 'SELECT * FROM %T WHERE repositoryID = %d AND (importStatus & %d) != %d 287 287 LIMIT 1', 288 288 id(new PhabricatorRepositoryCommit())->getTableName(), 289 289 $repository->getID(), 290 + PhabricatorRepositoryCommit::IMPORTED_ALL, 290 291 PhabricatorRepositoryCommit::IMPORTED_ALL); 291 292 if ($unparsed_commit) { 292 293 // We found a commit which still needs to import, so we can't clear the