From 9a4188e89bd3e25af8945fdd34f757cd1f5de821 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 7 May 2014 07:21:37 -0700 Subject: [PATCH] Fix transaction apply issue for Paste subscriptions Summary: Fixes T4979. Auditors: btrahan --- src/applications/paste/editor/PhabricatorPasteEditor.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/applications/paste/editor/PhabricatorPasteEditor.php b/src/applications/paste/editor/PhabricatorPasteEditor.php index e4822c3a70..7620ba2e31 100644 --- a/src/applications/paste/editor/PhabricatorPasteEditor.php +++ b/src/applications/paste/editor/PhabricatorPasteEditor.php @@ -76,6 +76,7 @@ final class PhabricatorPasteEditor $object->setViewPolicy($xaction->getNewValue()); return; case PhabricatorTransactions::TYPE_COMMENT: + case PhabricatorTransactions::TYPE_SUBSCRIBERS: return; } @@ -92,6 +93,7 @@ final class PhabricatorPasteEditor case PhabricatorPasteTransaction::TYPE_LANGUAGE: case PhabricatorTransactions::TYPE_VIEW_POLICY: case PhabricatorTransactions::TYPE_COMMENT: + case PhabricatorTransactions::TYPE_SUBSCRIBERS: return; }