I am using streaming as broadcast and my ios apk is getting crash when i call setLocalDescription multiple time.I have overcome this issue by adding null check.please refer below code and expecting this change in next update if possible.Thanks in advance. . · Issue #513 · flutter-webrtc/flutter-webrtc · GitHub
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
I am using streaming as broadcast and my ios apk is getting crash when i call setLocalDescription multiple time.I have overcome this issue by adding null check.please refer below code and expecting this change in next update if possible.Thanks in advance. .
#513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Getting below Error when i tried to call setLocalDescription multiple time within single stream.
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
*** First throw call stack:
Solution i had applied:
FileName: FlutterWebRTCPlugin.m
Added if(sender == nil) return;
Getting below Error when i tried to call setLocalDescription multiple time within single stream.
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
*** First throw call stack:
Solution i had applied:
FileName: FlutterWebRTCPlugin.m
Added
if(sender == nil) return;
The text was updated successfully, but these errors were encountered: