Releases: QuickBlox/quickblox-javascript-sdk
Releases · QuickBlox/quickblox-javascript-sdk
2.13.7
Fixes
Fixed issue with chat connection freezing in DISCONNECTING
state
2.13.6
Fixes
Changed RTCPeerConnection
configuration to not use mixing of one-byte and two-byte header extensions ("extmap-allow-mixed
") for backward compatibility with old WebRTC implementations
2.13.5
Fixes
Fixed error with WebRTC signalling re-initialization
Added throwing "ChatNotConnectedError
" if trying to send message via not connected connection
2.13.2
Fixes
Fixed condition when to call "on.sessionExpired" callback
2.13.1
Fixes
Fixed work of "ping" feature in Node environment
2.13.0
Added
Ability to migrate account if “accountKey” was passed
Fixes
Assign ondevicechange
handler only if WebRTC is available
2.12.9
Added
Ping functionality to QB.chat module
2.12.8
Fixes
WebRTC module
- Do not end a p2p group call if initiator hung up
- Do not start waitingReconnectTimer if it was created previously
2.12.7
Fixes
WebRTC module
"onCallListener" was called several times with same session
2.12.6
Ability to disable auto-reject if user already in call added.
To disable auto-reject in config set autoReject property to false(Default is true).
Example:
webrtc: {
answerTimeInterval: 60,
autoReject: false,
incomingLimit: 1,
dialingTimeInterval: 5,
disconnectTimeInterval: 30
}