chore(StatusIdenticon): use identicon source when set explicitly

This commit is contained in:
Pascal Precht 2020-12-04 11:28:55 +01:00 committed by Iuri Matias
parent fff67083f8
commit c7b6c5dbac
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ Item {
height: 40
Loader {
sourceComponent: root.chatType == Constants.chatTypeOneToOne ? imageIdenticon : letterIdenticon
sourceComponent: root.chatType == Constants.chatTypeOneToOne || !!root.identicon ? imageIdenticon : letterIdenticon
anchors.fill: parent
}