diff --git a/web/src/helpers/api.ts b/web/src/helpers/api.ts index 94c79e78..f347de17 100644 --- a/web/src/helpers/api.ts +++ b/web/src/helpers/api.ts @@ -202,7 +202,7 @@ export function upsertTag(tagName: string) { } export function deleteTag(tagName: string) { - return axios.delete>(`/api/tag/${encodeURI(tagName)}`); + return axios.delete>(`/api/tag/${encodeURIComponent(tagName)}`); } export async function getRepoStarCount() { diff --git a/web/src/utils/resource.ts b/web/src/utils/resource.ts index cfe54d5f..32ba5813 100644 --- a/web/src/utils/resource.ts +++ b/web/src/utils/resource.ts @@ -2,5 +2,5 @@ export const getResourceUrl = (resource: Resource, withOrigin = true) => { if (resource.externalLink) { return resource.externalLink; } - return `${withOrigin ? window.location.origin : ""}/o/r/${resource.id}/${encodeURI(resource.filename)}`; + return `${withOrigin ? window.location.origin : ""}/o/r/${resource.id}/${encodeURIComponent(resource.filename)}`; };