corrected webdav default path to match placeholder

This commit is contained in:
Jakub Trávník 2025-12-22 15:39:05 +01:00 committed by Nicolas Meienberger
parent 4dd9b7ffcc
commit 64a584f3cd

View file

@ -44,7 +44,7 @@ const defaultValuesForType = {
directory: { backend: "directory" as const, path: "/" },
nfs: { backend: "nfs" as const, port: 2049, version: "4.1" as const },
smb: { backend: "smb" as const, port: 445, vers: "3.0" as const },
webdav: { backend: "webdav" as const, port: 80, ssl: false, path: "/" },
webdav: { backend: "webdav" as const, port: 80, ssl: false, path: "/webdav" },
rclone: { backend: "rclone" as const, path: "/" },
};