Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Apr 22, 2021
1 parent a0d4713 commit 60ae228
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1318,8 +1318,8 @@ private boolean step_040_auto_checkForDuplicates(){

// Has the content type of the file changed?
//
String origType = fileToReplace.getOriginalFileFormat() != null ? fileToReplace.getOriginalFileFormat() : fileToReplace.getContentType();
if (!finalFileList.get(0).getContentType().equalsIgnoreCase(origType)) {
String fileType = fileToReplace.getOriginalFileFormat() != null ? fileToReplace.getOriginalFileFormat() : fileToReplace.getContentType();
if (!finalFileList.get(0).getContentType().equalsIgnoreCase(fileType)) {
String friendlyType = fileToReplace.getOriginalFormatLabel() != null ? fileToReplace.getOriginalFormatLabel() : fileToReplace.getFriendlyType();

List<String> errParams = Arrays.asList(friendlyType,
Expand Down

0 comments on commit 60ae228

Please sign in to comment.