Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sualko committed Aug 21, 2017
1 parent db0ddd4 commit 3c59855
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "strophe.jinglejs",
"version": "0.2.2",
"version": "0.2.3",
"description": "This package adds jingle.js to strophe.js",
"main": "strophe.jinglejs.js",
"author": "Klaus Herberth <[email protected]>",
Expand Down
8 changes: 6 additions & 2 deletions strophe.jinglejs-bundle.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*!
* strophe.jinglejs v0.2.2 - 2017-08-01
* strophe.jinglejs v0.2.3 - 2017-08-21
*
* Copyright (c) 2017 Klaus Herberth <[email protected]> <br>
* Released under the MIT license
*
* Please see https://github.com/sualko/strophe.jinglejs/
*
* @author Klaus Herberth <[email protected]>
* @version 0.2.2
* @version 0.2.3
* @license MIT
*/

Expand Down Expand Up @@ -33985,6 +33985,10 @@ var IqStanza = jxt.getDefinition('iq', 'jabber:client');

var iq = new IqStanza(data);

if (!iq.id) {
iq.id = self.connection.getUniqueId('sendIQ');
}

self.connection.send($.parseXML(iq.toString()).getElementsByTagName('iq')[0]);
});

Expand Down

0 comments on commit 3c59855

Please sign in to comment.