@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 typo in DiffusionLowLevelGitRefQuery

Summary: $refs_types is undefined.

Test Plan: None. PhabricatorRepositoryRefCursor::TYPE_REF is not used with DiffusionLowLevelGitRefQuery.

Reviewers: O1 Blessed Committers, speck

Reviewed By: O1 Blessed Committers, speck

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25468

+1 -1
+1 -1
src/applications/diffusion/query/lowlevel/DiffusionLowLevelGitRefQuery.php
··· 27 27 28 28 $with_branches = isset($ref_types[$type_branch]); 29 29 $with_tags = isset($ref_types[$type_tag]); 30 - $with_refs = isset($refs_types[$type_ref]); 30 + $with_refs = isset($ref_types[$type_ref]); 31 31 32 32 $repository = $this->getRepository(); 33 33