mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 07:20:49 -04:00
[profile][bug] fix escaping characters when fetching a profile
This commit is contained in:
parent
f16c40d2fb
commit
d8fadbf370
@ -123,7 +123,7 @@
|
|||||||
},
|
},
|
||||||
async asyncData({ app, route }) {
|
async asyncData({ app, route }) {
|
||||||
return {
|
return {
|
||||||
profiles: await app.$axios.$get(`/profile/get/${route.params.pathMatch}`),
|
profiles: await app.$axios.$get(`/profile/get/${encodeURIComponent(route.params.pathMatch)}`),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user