fix(api): update subscribe endpoint URL to include trailing slash

This commit is contained in:
InfinityPacer
2024-11-29 13:06:32 +08:00
parent 24e992339f
commit e5d8144510

View File

@@ -86,7 +86,7 @@ async function reSubscribe(item: Subscribe) {
else progressText.value = `正在重新订阅 ${item.name}${item.season} 季 ...`
progressDialog.value = true
try {
const result: { [key: string]: any } = await api.post('subscribe', item)
const result: { [key: string]: any } = await api.post('subscribe/', item)
if (result.success) {
emit('save')
}