Skip to content

Commit

Permalink
Remove token from author image URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikiher committed Nov 3, 2024
1 parent bf84072 commit 68fd1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/covers/AuthorImage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
},
imgSrc() {
if (!this.imagePath) return null
return `${this.$config.routerBasePath}/api/authors/${this.authorId}/image?token=${this.userToken}&ts=${this.updatedAt}`
return `${this.$config.routerBasePath}/api/authors/${this.authorId}/image?ts=${this.updatedAt}`
}
},
methods: {
Expand Down

0 comments on commit 68fd1d6

Please sign in to comment.