ndb: switch to computed property for tags

this will allows us to change less code on the switchover
This commit is contained in:
William Casarin
2023-07-24 13:08:18 -07:00
parent 04e408bfea
commit 2d44f2744b
3 changed files with 13 additions and 13 deletions

View File

@@ -60,7 +60,7 @@ func parse_note_content_ndb(note: NdbNote) -> Blocks {
while (i < bs.num_blocks) {
let block = bs.blocks[i]
if let converted = convert_block_ndb(block, tags: note.tags()) {
if let converted = convert_block_ndb(block, tags: note.tags) {
out.append(converted)
}