Skip to content

Commit 5ef64ec

Browse files
author
Jakob Schlanstedt
committed
fix(search): not being able to open notes on click
1 parent 7b1139e commit 5ef64ec

File tree

6 files changed

+415
-216
lines changed

6 files changed

+415
-216
lines changed

apps/server/src/becca/becca_loader.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ function load() {
7171
}
7272

7373
becca.loaded = true;
74-
75-
log.info(`Becca (note cache) load took ${Date.now() - start}ms`);
7674
}
7775

7876
function reload(reason: string) {

apps/server/src/becca/entities/bnote.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ class BNote extends AbstractBeccaEntity<BNote> {
8989
return ["noteId", "title", "isProtected", "type", "mime", "blobId"];
9090
}
9191

92-
private _normalizedTitle?: string;
92+
_normalizedTitle?: string;
9393
/** Cached trigrams for the note title */
94-
private _titleTrigrams?: Set<string>;
94+
_titleTrigrams?: Set<string>;
9595

9696
noteId!: string;
9797
title!: string;

0 commit comments

Comments
 (0)