diff --git a/src/public/app/entities/fnote.js b/src/public/app/entities/fnote.js index 848243fd6..134bac0df 100644 --- a/src/public/app/entities/fnote.js +++ b/src/public/app/entities/fnote.js @@ -120,10 +120,9 @@ class FNote { } async getContent() { - // we're not caching content since these objects are in froca and as such pretty long-lived - const note = await server.get(`notes/${this.noteId}`); + const blob = await this.getBlob(); - return note.content; + return blob?.content; } async getJsonContent() {