mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Allow "differential.createinline" to accept JSON "false" for "isNewFile"
Summary: See <https://discourse.phabricator-community.org/t/error-creating-inline-comment-via-conduit-api/4535>. See T12678. This API method currently does not accept a JSON "false", but reasonably should. Test Plan: - Called method with "isNewFile: false". - Before: type error. - After: inline comment. Differential Revision: https://secure.phabricator.com/D21522
This commit is contained in:
parent
ed86c42b26
commit
acd767c7f3
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ final class DifferentialCreateInlineConduitAPIMethod
|
||||||
->setChangesetID($cid)
|
->setChangesetID($cid)
|
||||||
->setAuthorPHID($request->getUser()->getPHID())
|
->setAuthorPHID($request->getUser()->getPHID())
|
||||||
->setContent($request->getValue('content'))
|
->setContent($request->getValue('content'))
|
||||||
->setIsNewFile($request->getValue('isNewFile'))
|
->setIsNewFile((int)$request->getValue('isNewFile'))
|
||||||
->setLineNumber($request->getValue('lineNumber'))
|
->setLineNumber($request->getValue('lineNumber'))
|
||||||
->setLineLength($request->getValue('lineLength', 0))
|
->setLineLength($request->getValue('lineLength', 0))
|
||||||
->save();
|
->save();
|
||||||
|
|
Loading…
Reference in a new issue