Skip to content

Commit 5d1a9ec

Browse files
authored
Properly handle Arabic hashtags (#5545)
1 parent 69b1011 commit 5d1a9ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/views/Hashtag/Hashtag.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default defineComponent({
6363
},
6464

6565
getHashtag: async function() {
66-
const hashtag = this.$route.params.hashtag
66+
const hashtag = decodeURIComponent(this.$route.params.hashtag)
6767
if (this.backendFallback || this.backendPreference === 'local') {
6868
await this.getLocalHashtag(hashtag)
6969
} else {

0 commit comments

Comments
 (0)