fix: index was ignore
This commit is contained in:
parent
6dcbfea30a
commit
64f00106b9
1 changed files with 2 additions and 2 deletions
|
|
@ -154,7 +154,7 @@ async function handleNotFoundRecord(
|
|||
|
||||
if (!errorKey.includes(key)) {
|
||||
try {
|
||||
Buffer.from(buffer).toString("base64");
|
||||
base64 = Buffer.from(buffer).toString("base64");
|
||||
} catch (e) {
|
||||
console.warn("[WARN] Cannot extract data from the file.", e);
|
||||
}
|
||||
|
|
@ -217,7 +217,7 @@ async function handleFoundRecord(
|
|||
|
||||
if (!errorKey.includes(key)) {
|
||||
try {
|
||||
Buffer.from(buffer).toString("base64");
|
||||
base64 = Buffer.from(buffer).toString("base64");
|
||||
} catch (e) {
|
||||
console.warn("[WARN] Cannot extract data from the file.", e);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue