Fix decodeURI on indexpage

This commit is contained in:
Wolfgang Huß 2019-09-13 15:37:43 +02:00 committed by roschaefer
parent 7759e54fd4
commit 2ad4bb3476

View File

@ -76,7 +76,9 @@ export default {
}, },
data() { data() {
let { hashtag = null } = this.$route.query let { hashtag = null } = this.$route.query
if (hashtag) {
hashtag = decodeURI(hashtag) hashtag = decodeURI(hashtag)
}
return { return {
posts: [], posts: [],
hasMore: true, hasMore: true,