mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 08:45:41 +08:00
fix: password should not be trimmed
This commit is contained in:
@@ -109,7 +109,7 @@ export const BackupConfigViewer = memo(
|
|||||||
await saveWebdavConfig(
|
await saveWebdavConfig(
|
||||||
data.url.trim(),
|
data.url.trim(),
|
||||||
data.username.trim(),
|
data.username.trim(),
|
||||||
data.password.trim(),
|
data.password,
|
||||||
).then(() => {
|
).then(() => {
|
||||||
Notice.success(t("WebDAV Config Saved"));
|
Notice.success(t("WebDAV Config Saved"));
|
||||||
onSaveSuccess();
|
onSaveSuccess();
|
||||||
|
|||||||
Reference in New Issue
Block a user