mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 21:02:41 +01:00
Differential - fix "transaction has no effect error" on diff create
Summary: Fixes T6658. Test Plan: made a diff with no repository and default policy and it worked! Reviewers: epriestley, chad Reviewed By: chad Subscribers: Korvin, epriestley Maniphest Tasks: T6658 Differential Revision: https://secure.phabricator.com/D10910
This commit is contained in:
parent
48e90ca7d5
commit
6081370391
2 changed files with 2 additions and 0 deletions
|
@ -172,6 +172,7 @@ final class DifferentialCreateDiffConduitAPIMethod
|
|||
id(new DifferentialDiffEditor())
|
||||
->setActor($viewer)
|
||||
->setContentSourceFromConduitRequest($request)
|
||||
->setContinueOnNoEffect(true)
|
||||
->applyTransactions($diff, $xactions);
|
||||
|
||||
$path = '/differential/diff/'.$diff->getID().'/';
|
||||
|
|
|
@ -68,6 +68,7 @@ final class DifferentialCreateRawDiffConduitAPIMethod
|
|||
id(new DifferentialDiffEditor())
|
||||
->setActor($viewer)
|
||||
->setContentSourceFromConduitRequest($request)
|
||||
->setContinueOnNoEffect(true)
|
||||
->setLookupRepository(false) // respect user choice
|
||||
->applyTransactions($diff, $xactions);
|
||||
|
||||
|
|
Loading…
Reference in a new issue