Skip to content

Commit

Permalink
'#1921: Minor code formatting fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
wladimirleite committed Oct 5, 2023
1 parent 5d2d6e8 commit 73dc869
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,15 +464,15 @@ private Message createMessageFromUndeletedRecord(SqliteRow row, Chat chat, Map<L
m.setMessageType(APP_MESSAGE);
} else if (mediaMime.startsWith("audio")) {
m.setMessageType(AUDIO_MESSAGE);
} else if (m.getMediaCaption() != null ){
} else if (m.getMediaCaption() != null) {
m.setMessageType(UNKNOWN_MEDIA_MESSAGE);
}
}
} else if (m.getMediaCaption() != null) {
m.setMessageType(UNKNOWN_MEDIA_MESSAGE);
}
}

if (MEDIA_MESSAGES.contains(m.getMessageType())) {
try {
m.setMediaHash(mediaItem.getTextValue("ZVCARDNAME"), true); //$NON-NLS-1$
Expand Down

0 comments on commit 73dc869

Please sign in to comment.