You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function returned by the logger function is throwing an error when trying to deal with a request object with a null body, due to trying to call Object.keys() on a null value.
At lines 307:320 (v3.2.1): ... Object.keys(req.body) ...
Could the check at line 307: if ( req.body !== undefined ) { be adjusted to also check for a null body?
The text was updated successfully, but these errors were encountered:
Hi,
The function returned by the logger function is throwing an error when trying to deal with a request object with a null body, due to trying to call
Object.keys()
on a null value.At lines 307:320 (v3.2.1):
... Object.keys(req.body) ...
Could the check at line 307:
if ( req.body !== undefined ) {
be adjusted to also check for a null body?The text was updated successfully, but these errors were encountered: