🐛 Fix edit sticker use wrong API
This commit is contained in:
parent
8b4b6eb703
commit
f80df60858
@ -162,10 +162,13 @@ async function submit(evt: SubmitEvent) {
|
|||||||
|
|
||||||
submitting.value = true
|
submitting.value = true
|
||||||
|
|
||||||
const res = await solarFetch(`/cgi/uc/stickers/packs/${route.params.id}`, {
|
const res = await solarFetch(`/cgi/uc/stickers/${route.params.sticker}`, {
|
||||||
method: "PUT",
|
method: "PUT",
|
||||||
headers: { "Content-Type": "application/json" },
|
headers: { "Content-Type": "application/json" },
|
||||||
body: JSON.stringify(data),
|
body: JSON.stringify({
|
||||||
|
pack_id: parseInt(route.params.id.toString()),
|
||||||
|
...data,
|
||||||
|
}),
|
||||||
})
|
})
|
||||||
if (res.status != 200) {
|
if (res.status != 200) {
|
||||||
error.value = await res.text()
|
error.value = await res.text()
|
||||||
|
Loading…
Reference in New Issue
Block a user