Skip to content

Commit

Permalink
fix issue with register failing silently
Browse files Browse the repository at this point in the history
  • Loading branch information
chase-manning committed Dec 6, 2023
1 parent 2191fa6 commit 6bc2b06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ admin.initializeApp();
export const register = onRequest(
{ secrets: [twitterClientID, twitterClientSecret, discordClientID, discordClientSecret] },
wrapHandler(async (request) => {
registrationHandler(request, {
await registrationHandler(request, {
twitterClientID: twitterClientID.value(),
twitterClientSecret: twitterClientSecret.value(),
discordClientID: discordClientID.value(),
Expand Down

0 comments on commit 6bc2b06

Please sign in to comment.