Vanessa 2025-11-21 23:03:44 +08:00
parent 0f0db729bf
commit cfc539b84a

View file

@ -237,7 +237,7 @@ export const copyTextByType = async (ids: string[],
const response = await fetchSyncPost("/api/filetree/getHPathByID", {id});
text += response.data;
} else if (type === "webURL") {
text += `${window.location.origin}/?id=${id}`;
text += `${window.location.origin}?id=${id}`;
} else if (type === "id") {
text += id;
}