fix: HTTP 404 with uppercase username (#2045)
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
parent
52e6711d51
commit
6e8fbc280f
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export async function getServerSideProps(context: GetServerSidePropsContext) {
|
|||
const ssr = await ssrInit(context);
|
||||
const user = await prisma.user.findUnique({
|
||||
where: {
|
||||
username: asStringOrThrow(context.query.user),
|
||||
username: asStringOrThrow(context.query.user).toLowerCase(),
|
||||
},
|
||||
select: {
|
||||
id: true,
|
||||
|
|
Loading…
Reference in a new issue