🐛 Fix api route

This commit is contained in:
2025-09-24 01:15:36 +08:00
parent 52971c2d67
commit 16a5207c02

View File

@@ -159,7 +159,7 @@ const api = useSolarNetwork()
const fileInfo = ref<any>(null)
async function fetchFileInfo() {
try {
let url = "/api/drive/files/" + fileId + "/info"
let url = "/drive/files/" + fileId + "/info"
if (passcode) {
url += `?passcode=${passcode}`
}