File tree 1 file changed +12
-5
lines changed
1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -87,12 +87,14 @@ JsSIP.Parser = (function() {
87
87
}
88
88
break ;
89
89
case 'record-route' :
90
- header = header_value . split ( ',' ) ;
90
+ header = header_value . match ( / ( [ ^ \" \' , ] * ( ( \' [ ^ \' ] * \' ) * | | ( \" [ ^ \" ] * \" ) * ) ) + / gm ) ;
91
91
length = header . length ;
92
92
parsed = 0 ;
93
93
94
94
for ( idx = 0 ; idx < length ; idx ++ ) {
95
- message . addHeader ( 'record-route' , header [ idx ] ) ;
95
+ if ( header [ idx ] . length > 0 ) {
96
+ message . addHeader ( 'record-route' , header [ idx ] ) ;
97
+ }
96
98
}
97
99
break ;
98
100
case 'call-id' :
@@ -105,12 +107,17 @@ JsSIP.Parser = (function() {
105
107
break ;
106
108
case 'contact' :
107
109
case 'm' :
108
- header = header_value . split ( ',' ) ;
110
+ header = header_value . match ( / ( [ ^ \" \' , ] * ( ( \' [ ^ \' ] * \' ) * | | ( \" [ ^ \" ] * \" ) * ) ) + / gm ) ;
109
111
length = header . length ;
110
112
111
113
for ( idx = 0 ; idx < length ; idx ++ ) {
112
- message . addHeader ( 'contact' , header [ idx ] ) ;
113
- parsed = message . parseHeader ( 'contact' , idx ) ;
114
+ if ( header [ idx ] . length > 0 ) {
115
+ message . addHeader ( 'contact' , header [ idx ] ) ;
116
+ parsed = message . parseHeader ( 'contact' , idx ) ;
117
+ if ( parsed === undefined ) {
118
+ break ;
119
+ }
120
+ }
114
121
}
115
122
break ;
116
123
case 'content-length' :
You can’t perform that action at this time.
0 commit comments