fix: HTTP 404 with uppercase username (#2045)

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
This commit is contained in:
Louis Haftmann 2022-03-03 17:42:30 +01:00 committed by GitHub
parent 52e6711d51
commit 6e8fbc280f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,