Typo: database extension error message (#8461)

This commit is contained in:
Shaikh Naasir
2025-12-29 13:26:09 +05:30
committed by GitHub
parent 3241693d6d
commit ec215bb3b1

View File

@@ -44,7 +44,7 @@ const fetchDocument = async ({ context, documentName: pageId, instance }: FetchP
await service.updateDescriptionBinary(pageId, payload);
} catch (e) {
const error = new AppError(e);
logger.error("Failed to save binary after first convertion from html:", error);
logger.error("Failed to save binary after first conversion from html:", error);
}
return convertedBinaryData;
}