mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix bug where tags couldnt sort when logged out
This commit is contained in:
parent
d980d11be0
commit
7ff860f3cc
1 changed files with 4 additions and 4 deletions
|
@ -181,14 +181,14 @@ export default function Posts() {
|
|||
? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${
|
||||
tagRules
|
||||
? Object.entries(tagRules)
|
||||
.map((key, value) => `${key}-${value}`)
|
||||
.map((key) => `${key}`)
|
||||
.join("_")
|
||||
: ""
|
||||
}`
|
||||
: `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${
|
||||
tagRules
|
||||
? Object.entries(tagRules)
|
||||
.map((key, value) => `${key}-${value}`)
|
||||
.map((key) => `${key}`)
|
||||
.join("_")
|
||||
: ""
|
||||
}`
|
||||
|
@ -201,14 +201,14 @@ export default function Posts() {
|
|||
? `https://d2jam.com/api/v1/posts?sort=${sort}&time=${time}&tags=${
|
||||
tagRules
|
||||
? Object.entries(tagRules)
|
||||
.map((key, value) => `${key}-${value}`)
|
||||
.map((key) => `${key}`)
|
||||
.join("_")
|
||||
: ""
|
||||
}&sticky=true`
|
||||
: `http://localhost:3005/api/v1/posts?sort=${sort}&time=${time}&tags=${
|
||||
tagRules
|
||||
? Object.entries(tagRules)
|
||||
.map((key, value) => `${key}-${value}`)
|
||||
.map((key) => `${key}`)
|
||||
.join("_")
|
||||
: ""
|
||||
}&sticky=true`
|
||||
|
|
Loading…
Reference in a new issue