Skip to content

Commit

Permalink
Fix #100. 'originator' property was missing in RTCSession 'started' e…
Browse files Browse the repository at this point in the history
…vent data object. Thanks @gavllew
  • Loading branch information
jmillan committed Jun 12, 2013
1 parent b5c08dc commit 15d83bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "0.3.2-devel",
"version": "0.3.3-devel",
"homepage": "http://jssip.net",
"author": "José Luis Millán <jmillan@aliax.net>",
"contributors": [
Expand Down
1 change: 1 addition & 0 deletions src/RTCSession.js
Original file line number Diff line number Diff line change
Expand Up @@ -1028,6 +1028,7 @@ RTCSession.prototype.started = function(originator, message) {
session.start_time = new Date();

session.emit(event_name, session, {
originator: originator,
response: message || null
});
};
Expand Down

0 comments on commit 15d83bb

Please sign in to comment.