chore(core): fix type error in getFlatText

This commit is contained in:
Elian Doran 2026-01-06 11:56:52 +02:00
parent 544c52931c
commit a15b84b4e5
No known key found for this signature in database

View File

@ -775,7 +775,7 @@ class BNote extends AbstractBeccaEntity<BNote> {
*
* @returns - returns flattened textual representation of note, prefixes and attributes
*/
getFlatText() {
getFlatText(): string {
if (!this.__flatTextCache) {
this.__flatTextCache = `${this.noteId} ${this.type} ${this.mime} `;
@ -801,7 +801,7 @@ class BNote extends AbstractBeccaEntity<BNote> {
this.__flatTextCache = utils.normalize(this.__flatTextCache);
}
return this.__flatTextCache;
return this.__flatTextCache as string;
}
invalidateThisCache() {