Fix still tags not being applied to search request.

This commit is contained in:
Kashi754
2026-04-21 19:23:21 +09:00
parent 329fa31262
commit 4eef9ea18e
@@ -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