fix: status update not using the right component

This commit is contained in:
Jonathan Rainville 2021-01-25 15:13:43 -05:00 committed by Iuri Matias
parent b773766055
commit 9026108e86
1 changed files with 3 additions and 2 deletions

View File

@ -115,8 +115,9 @@ Item {
case Constants.communityInviteType:
return invitationBubble
default:
return appSettings.compactMode ? compactMessageComponent :
isStatusUpdate ? statusUpdateComponent : messageComponent
return isStatusUpdate ? statusUpdateComponent :
(appSettings.compactMode ? compactMessageComponent : messageComponent)
}
}
}