Remove error message when password is not set

This commit is contained in:
mbaharip
2024-05-05 16:46:39 +07:00
parent 1254d83fb0
commit eb0804826b
+2 -1
View File
@@ -268,7 +268,8 @@ export async function CheckPassword(
const currentFolder = paths[folderIndex];
if (!cookiesValue[currentFolder.id])
throw {
message: `Password for '${currentFolder.path}' is not set, please enter the password`,
// message: `Password for '${currentFolder.path}' is not set, please enter the password`,
message: null,
path: currentFolder.id,
};