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
In jsaddle-dom there are two createAnswer functions one is generated and does return a RTCSessionDescriptionInit, the other is custom and does a conversion to RTCSessionDescription. The custom one is exported. This is unfortunate for two reasons:
the return value of createAnswer is used in setLocalDescription which expects a RTCSessionDescriptionInit.
ghcjs-dom only has the generated one, which returns a RTCSessionDescriptionInit. Thus it seems to be incompatible with jsaddle-dom.
I can file a PR for exporting the generated function and maybe even dropping the custom one if this is the way to go. Am I missing something?
The text was updated successfully, but these errors were encountered:
In jsaddle-dom there are two createAnswer functions one is generated and does return a RTCSessionDescriptionInit, the other is custom and does a conversion to RTCSessionDescription. The custom one is exported. This is unfortunate for two reasons:
I can file a PR for exporting the generated function and maybe even dropping the custom one if this is the way to go. Am I missing something?
The text was updated successfully, but these errors were encountered: