Skip to content

Commit 4f14c4b

Browse files
authoredSep 27, 2019
Merge pull request #31 from victorocna/patch-1
Update authEndPoint.js
2 parents 589191c + a552ba5 commit 4f14c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/lambda/authEndPoint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import fetch from 'node-fetch';
55
export async function handler(event, context) {
6-
if (!context.clientContext && !context.clientContext.identity) {
6+
if (!context.clientContext || !context.clientContext.identity) {
77
return {
88
statusCode: 500,
99
body: JSON.stringify({

0 commit comments

Comments
 (0)
Please sign in to comment.