Fix bug where tags couldnt sort when logged out

This commit is contained in:
Ategon 2025-02-07 15:38:15 -05:00
parent d980d11be0
commit 7ff860f3cc

View file

@ -181,14 +181,14 @@ export default function Posts() {
? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${ ? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${
tagRules tagRules
? Object.entries(tagRules) ? Object.entries(tagRules)
.map((key, value) => `${key}-${value}`) .map((key) => `${key}`)
.join("_") .join("_")
: "" : ""
}` }`
: `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${ : `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${
tagRules tagRules
? Object.entries(tagRules) ? Object.entries(tagRules)
.map((key, value) => `${key}-${value}`) .map((key) => `${key}`)
.join("_") .join("_")
: "" : ""
}` }`
@ -201,14 +201,14 @@ export default function Posts() {
? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${ ? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${
tagRules tagRules
? Object.entries(tagRules) ? Object.entries(tagRules)
.map((key, value) => `${key}-${value}`) .map((key) => `${key}`)
.join("_") .join("_")
: "" : ""
}&sticky=true` }&sticky=true`
: `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${ : `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${
tagRules tagRules
? Object.entries(tagRules) ? Object.entries(tagRules)
.map((key, value) => `${key}-${value}`) .map((key) => `${key}`)
.join("_") .join("_")
: "" : ""
}&sticky=true` }&sticky=true`