Skip to content

Commit 1a62537

Browse files
author
Jan Bongers
committed
fix: Omit image tag when fetching user profile image
1 parent c84ad82 commit 1a62537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/components/Layout/Images/UserImage.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ export default Vue.extend({
4545
computed: {
4646
userImage: {
4747
get(): string | undefined {
48-
if (this.user?.Id && this.user?.PrimaryImageTag) {
49-
return `${this.$axios.defaults.baseURL}/Users/${this.user.Id}/Images/Primary/?tag=${this.user.PrimaryImageTag}&quality=${this.quality}`;
48+
if (this.user?.Id) {
49+
return `${this.$axios.defaults.baseURL}/Users/${this.user.Id}/Images/Primary/?quality=${this.quality}`;
5050
}
5151
}
5252
},

0 commit comments

Comments
 (0)