chore(prettier): fix all files

This commit is contained in:
Elian Doran
2025-01-09 18:07:02 +02:00
parent 19ee861699
commit 4cbb529fd4
571 changed files with 23226 additions and 23940 deletions

View File

@@ -19,7 +19,7 @@ function protectRevisions(note: BNote) {
revision.isProtected = !!note.isProtected;
// this will force de/encryption
revision.setContent(content, {forceSave: true});
revision.setContent(content, { forceSave: true });
} catch (e) {
log.error(`Could not un/protect note revision '${revision.revisionId}'`);
@@ -33,7 +33,7 @@ function protectRevisions(note: BNote) {
const content = attachment.getContent();
attachment.isProtected = note.isProtected;
attachment.setContent(content, {forceSave: true});
attachment.setContent(content, { forceSave: true });
} catch (e) {
log.error(`Could not un/protect attachment '${attachment.attachmentId}'`);