Skip to content

Commit 8c9da1b

Browse files
committed
Fix charapp 404 issues
1 parent 95ac3eb commit 8c9da1b

File tree

1 file changed

+1
-1
lines changed
  • Site/src/routes/(rbxclient)/asset/characterfetch/[username]

1 file changed

+1
-1
lines changed

Site/src/routes/(rbxclient)/asset/characterfetch/[username]/+server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function GET({ params }) {
2020
const [[user]] = await db.query<User[][]>(userQuery, { username })
2121
if (!user) error(404, "User not found")
2222

23-
let charApp = `http://${config.Domain}/asset/bodycolours/${username}#`
23+
let charApp = `http://${config.Domain}/asset/bodycolours/${username}?`
2424
for (const asset of user.wearing)
2525
charApp += `;http://${config.Domain}/asset?id=${asset}`
2626

0 commit comments

Comments
 (0)