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
catches NOT_CONNECTED (error code: 1010) and UNABLE_TO_PUBLISH (error code: 1500) and every other exception as PublishToSessionError
Documentation of opentok's publish method tells us that this call can throw Connection Failed (error code: 1013) and 1500.
Based on the documentation that call will never throw 1010 which will be represented as PublishToSessionNotConnectedError but it will do a 1013 which will be represented as PublishToSessionError
The text was updated successfully, but these errors were encountered:
opentok-network-test-js/src/NetworkTest/testConnectivity/index.ts
Line 216 in 6991a66
catches
NOT_CONNECTED
(error code: 1010) andUNABLE_TO_PUBLISH
(error code: 1500) and every other exception asPublishToSessionError
Documentation of
opentok
'spublish
method tells us that this call can throw Connection Failed (error code: 1013) and 1500.Based on the documentation that call will never throw 1010 which will be represented as
PublishToSessionNotConnectedError
but it will do a 1013 which will be represented asPublishToSessionError
The text was updated successfully, but these errors were encountered: