mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 08:42:41 +01:00
Fix issue where 'changeType' is not marshalled across Conduit
Summary: This leads to the "Change" column always showing "Unknown". Test Plan: "Change" column now shows, e.g., "Contents Modified". Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D7041
This commit is contained in:
parent
916c4cb78a
commit
3b5f0276d1
1 changed files with 2 additions and 0 deletions
|
@ -168,6 +168,7 @@ final class DiffusionPathChange {
|
||||||
'commit' => $commit_dict,
|
'commit' => $commit_dict,
|
||||||
'commitData' => $commit_data_dict,
|
'commitData' => $commit_data_dict,
|
||||||
'fileType' => $this->getFileType(),
|
'fileType' => $this->getFileType(),
|
||||||
|
'changeType' => $this->getChangeType(),
|
||||||
'targetPath' => $this->getTargetPath(),
|
'targetPath' => $this->getTargetPath(),
|
||||||
'targetCommitIdentifier' => $this->getTargetCommitIdentifier(),
|
'targetCommitIdentifier' => $this->getTargetCommitIdentifier(),
|
||||||
'awayPaths' => $this->getAwayPaths());
|
'awayPaths' => $this->getAwayPaths());
|
||||||
|
@ -186,6 +187,7 @@ final class DiffusionPathChange {
|
||||||
->setCommit($commit)
|
->setCommit($commit)
|
||||||
->setCommitData($commit_data)
|
->setCommitData($commit_data)
|
||||||
->setFileType($dict['fileType'])
|
->setFileType($dict['fileType'])
|
||||||
|
->setChangeType($dict['changeType'])
|
||||||
->setTargetPath($dict['targetPath'])
|
->setTargetPath($dict['targetPath'])
|
||||||
->setTargetCommitIdentifier($dict['targetCommitIdentifier'])
|
->setTargetCommitIdentifier($dict['targetCommitIdentifier'])
|
||||||
->setAwayPaths($dict['awayPaths']);
|
->setAwayPaths($dict['awayPaths']);
|
||||||
|
|
Loading…
Reference in a new issue