mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Fix decodeURI on indexpage
This commit is contained in:
parent
7759e54fd4
commit
2ad4bb3476
@ -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,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user