Skip to content

Commit

Permalink
Properly handle Arabic hashtags (#5545)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored Aug 12, 2024
1 parent 69b1011 commit 5d1a9ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/views/Hashtag/Hashtag.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default defineComponent({
},

getHashtag: async function() {
const hashtag = this.$route.params.hashtag
const hashtag = decodeURIComponent(this.$route.params.hashtag)
if (this.backendFallback || this.backendPreference === 'local') {
await this.getLocalHashtag(hashtag)
} else {
Expand Down

0 comments on commit 5d1a9ec

Please sign in to comment.