1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

Fix issue with "Publish/Notify" handling in repositories

Summary:
Fixes T8728. As far as I can tell, I simply got this wrong in D11826. This is not the proper name for the preference.

That change primarily focused on the "spammy junk during import" issue, and the code did get the importing flag right. It looks like my testing in D11827 focused on "during import" and just missed this case.

Test Plan: Grepped for `disable-herald`. Grepped for `herald-disable`.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T8728

Differential Revision: https://secure.phabricator.com/D14181
This commit is contained in:
epriestley 2015-09-28 11:17:04 -07:00
parent 33be8f719f
commit 0438a481e1

View file

@ -715,7 +715,7 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
return false;
}
if ($this->getDetail('disable-herald')) {
if ($this->getDetail('herald-disabled')) {
return false;
}