Sorting aggregates by slug or lowercased name to avoid capitalization issues. Fixed slug getting interpreted as ID by cache lookup.

This commit is contained in:
2024-03-27 23:54:23 +01:00
parent 768ab41ee7
commit 22c4bb0405
4 changed files with 9 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ export async function onBeforeRender(pageContext) {
return {
pageContext: {
title: `Search '${pageContext.urlParsed.search.q}'`,
title: `Search '${pageContext.urlParsed.search.q || ''}'`,
pageProps: {
scenes,
aggActors,