Skip to content

Commit 6a9025c

Browse files
committed
Fallback to unknown photo mimetype
Signed-off-by: John Molakvoæ (skjnldsv) <[email protected]>
1 parent b362ada commit 6a9025c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/components/ContactsList/ContactsListItem.vue

+6
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ export default {
104104
},
105105
avatarUrl() {
106106
if (this.contact.photo) {
107+
const type = this.contact.vCard.getFirstProperty('photo').type
108+
if (!this.contact.photo.startsWith('data') && type === 'binary') {
109+
// split on coma in case of any leftover base64 data and retrieve last part
110+
// usually we come to this part when the base64 image type is unknown
111+
return `url(data:image;base64,${this.contact.photo.split(',').pop()})`
112+
}
107113
return `url(${this.contact.photo})`
108114
}
109115
return `url(${this.contact.url}?photo)`

0 commit comments

Comments
 (0)