From 85b32e60974c1b9214c40892a46ea88be2c84fee Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 19 Jul 2021 18:07:17 +0100 Subject: [PATCH] fixed tag filtering not working --- src/js/account.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/account.js b/src/js/account.js index 93edb17eb..8ac0ee9a4 100644 --- a/src/js/account.js +++ b/src/js/account.js @@ -494,7 +494,7 @@ export function update() { } } else { //tags exist - let validTags = DB.getSnapshot().tags.map((t) => t.id); + let validTags = DB.getSnapshot().tags.map((t) => t._id); result.tags.forEach((tag) => { //check if i even need to check tags anymore if (!tagHide) return;