mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 01:39:18 +02:00
add spaces around ==
This commit is contained in:
parent
74208fff69
commit
ae8ce94c00
1 changed files with 2 additions and 2 deletions
|
@ -412,7 +412,7 @@ public class ConversationItem extends BaseConversationItem
|
|||
|
||||
String text = messageRecord.getText();
|
||||
|
||||
if (messageRecord.getType()==DcMsg.DC_MSG_CALL || text.isEmpty()) {
|
||||
if (messageRecord.getType() == DcMsg.DC_MSG_CALL || text.isEmpty()) {
|
||||
bodyText.setVisibility(View.GONE);
|
||||
}
|
||||
else {
|
||||
|
@ -821,7 +821,7 @@ public class ConversationItem extends BaseConversationItem
|
|||
return stickerStub.get().getFooter();
|
||||
} else if (hasOnlyThumbnail(messageRecord) && TextUtils.isEmpty(messageRecord.getText())) {
|
||||
return mediaThumbnailStub.get().getFooter();
|
||||
} else if (messageRecord.getType()==DcMsg.DC_MSG_CALL) {
|
||||
} else if (messageRecord.getType() == DcMsg.DC_MSG_CALL) {
|
||||
return callViewStub.get().getFooter();
|
||||
} else {
|
||||
return footer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue