From 4eef9ea18e44b76cc2fa7b97bdccc36490df5677 Mon Sep 17 00:00:00 2001 From: Kashi754 Date: Tue, 21 Apr 2026 19:23:21 +0900 Subject: [PATCH] Fix still tags not being applied to search request. --- dots/.config/quickshell/ii/services/Booru.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/services/Booru.qml b/dots/.config/quickshell/ii/services/Booru.qml index b4064058d..187d047fc 100644 --- a/dots/.config/quickshell/ii/services/Booru.qml +++ b/dots/.config/quickshell/ii/services/Booru.qml @@ -329,10 +329,10 @@ Singleton { else if (currentProvider === "waifu.im") { var tagsArray = tagString.split(" "); tagsArray.forEach(tag => { - params.push("included_tags=" + encodeURIComponent(tag)); + params.push("IncludedTags=" + encodeURIComponent(tag.toLowerCase())); }); params.push("PageSize=" + Math.min(limit, 30)) // Only admin can do > 30 - params.push("is_nsfw=" + (nsfw ? "null" : "false")) // null is random + params.push("IsNsfw=" + (nsfw ? "All" : "False")) // null is random } else if (currentProvider === "t.alcy.cc") { url += tagString