mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-19 17:42:41 +08:00
feat: support more http status check for webdav
This commit is contained in:
@@ -21,7 +21,7 @@ export function createWebDavClient(store: SyncStore) {
|
|||||||
proxyUrl,
|
proxyUrl,
|
||||||
});
|
});
|
||||||
console.log("[WebDav] check", res.status, res.statusText);
|
console.log("[WebDav] check", res.status, res.statusText);
|
||||||
return [201, 200, 404, 401].includes(res.status);
|
return [201, 200, 404, 301, 302, 307, 308].includes(res.status);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("[WebDav] failed to check", e);
|
console.error("[WebDav] failed to check", e);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user