Skip to content

Commit

Permalink
Fix a missing parameter in Registrator for an 'unregistered' event
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Jan 20, 2013
1 parent 69fbdbd commit 293fdcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Registrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ JsSIP.Registrator.prototype = {
}

this.registered = false;
this.ua.emit('unregistered');
this.ua.emit('unregistered', this.ua);

// Clear the registration timer.
window.clearTimeout(this.registrationTimer);
Expand Down

0 comments on commit 293fdcd

Please sign in to comment.