From aa6a313262b8dd11f9008ef60d1f785a28f1a93b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20P=C5=82aczek?= Date: Sat, 3 Jan 2026 11:04:47 +0100 Subject: [PATCH] Fix filtering by username bug --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index a0a6a27..1b6d1fc 100755 --- a/src/main.js +++ b/src/main.js @@ -220,7 +220,7 @@ Alpine.data('bookmeterList', function () { .filter(i => { if (this.advancedSearch) { return ( - (!this.username || i._username.includes(this.username)) && + (!this.username || i._username.includes(username)) && (!this.title || i._title.includes(title)) && (!this.author || i._author.includes(author)) && (!this.publisher || i._publisher.includes(publisher))