mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
Mark moved binary file as image
Test Plan: Moved image, verified that the source file is marked as image: https://secure.phabricator.com/differential/diff/6924/ Reviewers: epriestley, btrahan Reviewed By: btrahan CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3520
This commit is contained in:
parent
1d744e932f
commit
7119f0c4cc
1 changed files with 2 additions and 1 deletions
|
@ -1028,7 +1028,8 @@ EOTEXT
|
|||
$change->setMetadata('new:file:size', $new_dict['size']);
|
||||
$change->setMetadata('new:file:mime-type', $new_dict['mime']);
|
||||
|
||||
if (preg_match('@^image/@', $new_dict['mime'])) {
|
||||
$mime_type = coalesce($new_dict['mime'], $old_dict['mime']);
|
||||
if (preg_match('@^image/@', $mime_type)) {
|
||||
$change->setFileType(ArcanistDiffChangeType::FILE_IMAGE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue