We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b362ada commit 6a9025cCopy full SHA for 6a9025c
src/components/ContactsList/ContactsListItem.vue
@@ -104,6 +104,12 @@ export default {
104
},
105
avatarUrl() {
106
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
+ }
113
return `url(${this.contact.photo})`
114
}
115
return `url(${this.contact.url}?photo)`
0 commit comments