Fixed missing tag filter breaking stash page.

This commit is contained in:
DebaucheryLibrarian 2024-04-02 16:17:23 +02:00
parent ccca539867
commit 4e6db6bd4f
2 changed files with 2 additions and 0 deletions

View File

@ -13,6 +13,7 @@ export async function onBeforeRender(pageContext) {
...pageContext.urlQuery,
scope: pageContext.routeParams.scope || 'latest',
stashId: stash.id,
tagFilter: pageContext.tagFilter,
}), {
page: Number(pageContext.routeParams.page) || 1,
limit: Number(pageContext.urlParsed.search.limit) || 50,

View File

@ -13,6 +13,7 @@ export async function onBeforeRender(pageContext) {
...pageContext.urlQuery,
scope: pageContext.routeParams.scope || 'stashed',
stashId: stash.id,
tagFilter: pageContext.tagFilter,
}), {
page: Number(pageContext.routeParams.page) || 1,
limit: Number(pageContext.urlParsed.search.limit) || 30,