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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,7 @@ const fetchDocument = async ({ context, documentName: pageId, instance }: FetchP
await service.updateDescriptionBinary(pageId, payload); await service.updateDescriptionBinary(pageId, payload);
} catch (e) { } catch (e) {
const error = new AppError(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; return convertedBinaryData;
} }