URI encode '/' properly when clicking on tag #193
lolcharacters
started this conversation in
Ideas
Replies: 2 comments
-
Thanks for the heads up on this. Looks like an easy fix. We'll get that resolved this week. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey @lolcharacters! We have implemented a fix for this and should be out in our next release today. Thank you again for pointing it out 🙏 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you click on a tag with a '/' in it (example page), the URL will not be found because it is not encoded.
The page does exist for the example: https://civitai.com/tag/k%2Fda%20all%20out%20ahri
Looks the line is here:
civitai/src/pages/models/[id]/[[...slug]].tsx
Line 434 in c445e4f
where it is using the tag directly. Instead it should be URI encoded. I think we only need to URI encode "/"? I believe browsers automatically URI encode other characters.
Beta Was this translation helpful? Give feedback.
All reactions