Skip to content

Commit

Permalink
Merge pull request #4252 from nextcloud/backport/4249/stable6.1
Browse files Browse the repository at this point in the history
[stable6.1] fix: check if photo property is set before downloading
  • Loading branch information
SebastianKrupinski authored Dec 13, 2024
2 parents 866db45 + 243d957 commit 795860f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContactsList/ContactsListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export default {
return
}
this.avatarUrl = photoUrl
} else if (this.source.url) {
} else if (this.source.hasPhoto && this.source.url) {
this.avatarUrl = `${this.source.url}?photo`
}
},
Expand Down
10 changes: 10 additions & 0 deletions src/models/contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,16 @@ export default class Contact {
this.vCard.updatePropertyWithValue('photo', photo)
}

/**
* Return whether a photo is available
*
* @readonly
* @memberof Contact
*/
get hasPhoto() {
return this.dav && this.dav.hasphoto
}

/**
* Return the photo usable url
* We cannot fetch external url because of csp policies
Expand Down

0 comments on commit 795860f

Please sign in to comment.