File tree Expand file tree Collapse file tree 5 files changed +148
-148
lines changed Expand file tree Collapse file tree 5 files changed +148
-148
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ringcentral-web-phone" ,
3
- "version" : " 2.2.5 " ,
3
+ "version" : " 2.2.6 " ,
4
4
"repository" : {
5
5
"type" : " git" ,
6
6
"url" : " git+https://github.com/ringcentral/ringcentral-web-phone.git"
40
40
"uuid" : " ^11.1.0"
41
41
},
42
42
"devDependencies" : {
43
- "@playwright/test" : " ^1.54.1 " ,
43
+ "@playwright/test" : " ^1.54.2 " ,
44
44
"@rollup/plugin-commonjs" : " ^28.0.6" ,
45
45
"@rollup/plugin-node-resolve" : " ^16.0.1" ,
46
46
"@types/blueimp-md5" : " ^2.18.2" ,
53
53
"manate" : " ^2.0.0" ,
54
54
"parcel" : " ^2.15.4" ,
55
55
"process" : " ^0.11.10" ,
56
- "rollup" : " ^4.45.1 " ,
56
+ "rollup" : " ^4.46.2 " ,
57
57
"stream-browserify" : " ^3.0.0" ,
58
58
"string_decoder" : " ^1.3.0" ,
59
59
"timers-browserify" : " ^2.0.12" ,
60
60
"tsx" : " ^4.20.3" ,
61
- "typescript" : " ^5.8.3 " ,
61
+ "typescript" : " ^5.9.2 " ,
62
62
"wait-for-async" : " ^0.7.13" ,
63
63
"yarn-upgrade-all" : " ^0.7.5"
64
64
},
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ class InboundCallSession extends CallSession {
140
140
headers : {
141
141
"Content-Type" : "application/sdp" ,
142
142
} ,
143
- body : answer . sdp ,
143
+ body : this . rtcPeerConnection . localDescription ! . sdp ,
144
144
} ) ;
145
145
await this . webPhone . sipClient . reply ( newMessage ) ;
146
146
Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ class CallSession extends EventEmitter {
355
355
headers : {
356
356
"Content-Type" : "application/sdp" ,
357
357
} ,
358
- body : answer . sdp ,
358
+ body : this . rtcPeerConnection . localDescription ! . sdp ,
359
359
} ) ;
360
360
await this . webPhone . sipClient . reply ( newMessage ) ;
361
361
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ class OutboundCallSession extends CallSession {
76
76
Via : `SIP/2.0/WSS ${ fakeDomain } ;branch=${ branch ( ) } ` ,
77
77
"Content-Type" : "application/sdp" ,
78
78
} ,
79
- this . rtcPeerConnection . localDescription ! . sdp ! ,
79
+ this . rtcPeerConnection . localDescription ! . sdp ,
80
80
) ;
81
81
if ( callerId ) {
82
82
inviteMessage . headers [ "P-Asserted-Identity" ] =
You can’t perform that action at this time.
0 commit comments