Skip to content

Commit 1740e5e

Browse files
committed
Fix #117. Clear registration timer before re-setting it
1 parent 32df47f commit 1740e5e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jssip",
33
"title": "JsSIP",
44
"description": "the Javascript SIP library",
5-
"version": "0.3.4",
5+
"version": "0.3.5",
66
"homepage": "http://jssip.net",
77
"author": "José Luis Millán <jmillan@aliax.net>",
88
"contributors": [

src/Registrator.js

+3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ Registrator.prototype = {
7979
return;
8080
}
8181

82+
// Clear registration timer
83+
window.clearTimeout(this.registrationTimer);
84+
8285
switch(true) {
8386
case /^1[0-9]{2}$/.test(response.status_code):
8487
// Ignore provisional responses.

0 commit comments

Comments
 (0)