@@ -599,7 +599,7 @@ JsSIP.UA.prototype.recoverTransport = function(ua) {
599
599
*/
600
600
JsSIP . UA . prototype . loadConfig = function ( configuration ) {
601
601
// Settings and default values
602
- var parameter , attribute , idx , uri , ws_uri , contact ,
602
+ var parameter , attribute , idx , uri , ws_uri , contact , value ,
603
603
settings = {
604
604
/* Host address
605
605
* Value to be set in Via sent_by and host part of Contact FQDN
@@ -677,10 +677,18 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
677
677
// Check Optional parameters
678
678
for ( parameter in JsSIP . UA . configuration_check . optional ) {
679
679
if ( configuration . hasOwnProperty ( parameter ) ) {
680
- if ( JsSIP . UA . configuration_check . optional [ parameter ] ( configuration [ parameter ] ) ) {
681
- settings [ parameter ] = configuration [ parameter ] ;
680
+ value = configuration [ parameter ] ;
681
+
682
+ // If the parameter value is null, empty string or undefined then apply its default value.
683
+ if ( value === null || value === "" || value === undefined ) { continue ; }
684
+ // If it's a number with NaN value then also apply its default value.
685
+ // NOTE: JS does not allow "value === NaN", the following does the work:
686
+ else if ( typeof ( value ) === 'number' && window . isNaN ( value ) ) { continue ; }
687
+
688
+ if ( JsSIP . UA . configuration_check . optional [ parameter ] ( value ) ) {
689
+ settings [ parameter ] = value ;
682
690
} else {
683
- console . error ( 'Bad configuration parameter: ' + parameter ) ;
691
+ console . error ( 'Bad configuration parameter ' + parameter + ' with value ' + window . String ( value ) ) ;
684
692
return false ;
685
693
}
686
694
}
@@ -751,7 +759,10 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
751
759
}
752
760
753
761
// Fill the value of the configuration_skeleton
762
+ console . log ( 'configuration parameters after validation:' ) ;
754
763
for ( attribute in settings ) {
764
+ value = settings [ attribute ] ;
765
+ console . log ( '· ' + attribute + ': ' + window . String ( settings [ attribute ] ) ) ;
755
766
JsSIP . UA . configuration_skeleton [ attribute ] . value = settings [ attribute ] ;
756
767
}
757
768
0 commit comments