Suddenly started getting errors without any changes in code: Cannot convert undefined or null to object
See original GitHub issueDescribe the bug
TypeError: Cannot convert undefined or null to object
at Function.keys (<anonymous>)
at MeetingSessionConfiguration.toLowerCasePropertyNames (MeetingSessionConfiguration.js?f783:165)
at eval (MeetingSessionConfiguration.js?f783:167)
at Array.reduce (<anonymous>)
at MeetingSessionConfiguration.toLowerCasePropertyNames (MeetingSessionConfiguration.js?f783:165)
at eval (MeetingSessionConfiguration.js?f783:167)
at Array.reduce (<anonymous>)
at MeetingSessionConfiguration.toLowerCasePropertyNames (MeetingSessionConfiguration.js?f783:165)
at new MeetingSessionConfiguration (MeetingSessionConfiguration.js?f783:125)
Platform Latest
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Cannot convert undefined or null to object - Stack Overflow
This error is caused when you call a function that expects an Object as its argument, but pass undefined or null instead, like...
Read more >npm err! cannot convert undefined or null to object - You.com
All it is saying is that it expects an object of some type but it has null as the object may be set...
Read more >Cannot convert undefined or null to object : r/learnjavascript
Your code throws the error because before fetch completes, location is undefined, but you are telling react to iterate over it, which can't...
Read more >TypeError: Cannot convert undefined or null to object
Not sure what happened, but our pipelines and local environments all throw ... suddenly started throwing error: TypeError: Cannot convert ...
Read more >Cannot convert undefined or null to object ( But we didn't ...
It worked for 2 months but since this morning there is this message. We made no code changes. 1st precision: the module works...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Was able to temporarily fix this issue by passing
ExternalMeetingId
tochime.createMeeting()
which is actually optional parameter.The #798 is merged and we have released new
amazon-chime-sdk-js
version 1.20.2 with this fix. Please check and feel free to open this or new issue if you see any issues.