Closed danybmx closed 2 years ago
Hi!
This adds a null check on the EventHub and BlobStorage forwarders function because typeof null === "object" so it will throw an exception when tries to get parsedLogs[0].record if parsedLogs[0] is null
typeof null === "object"
parsedLogs[0].record
parsedLogs[0]
null
Regards!
:tada: This PR is included in version 1.2.1 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Hi!
This adds a null check on the EventHub and BlobStorage forwarders function because
typeof null === "object"
so it will throw an exception when tries to getparsedLogs[0].record
ifparsedLogs[0]
isnull
Regards!