We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32df47f commit 1740e5eCopy full SHA for 1740e5e
package.json
@@ -2,7 +2,7 @@
2
"name": "jssip",
3
"title": "JsSIP",
4
"description": "the Javascript SIP library",
5
- "version": "0.3.4",
+ "version": "0.3.5",
6
"homepage": "http://jssip.net",
7
"author": "José Luis Millán <jmillan@aliax.net>",
8
"contributors": [
src/Registrator.js
@@ -79,6 +79,9 @@ Registrator.prototype = {
79
return;
80
}
81
82
+ // Clear registration timer
83
+ window.clearTimeout(this.registrationTimer);
84
+
85
switch(true) {
86
case /^1[0-9]{2}$/.test(response.status_code):
87
// Ignore provisional responses.
0 commit comments