Align getrepsblob guard with route contract and fix quill utils import

This commit is contained in:
2026-03-13 14:12:36 +00:00
parent 6094874851
commit b8fa514e3b
2 changed files with 6 additions and 4 deletions
+1 -3
View File
@@ -51,8 +51,6 @@ ApiProxy.get(async (req, res) => {
if (
typeof containerName === "undefined" ||
containerName.length === 0 ||
typeof casefolderID === "undefined" ||
casefolderID.length === 0 ||
typeof checkHash === "undefined" ||
checkHash.length === 0
) {
@@ -66,7 +64,7 @@ ApiProxy.get(async (req, res) => {
}
if (hashAPIPath(checkquerypath) == "&hash=" + checkHash) {
const blobObj = await getRepsBlobs(containerName, casefolderID)
const blobObj = await getRepsBlobs(containerName)
.then(async (data) => {
return data;
})