diff --git a/chrome/content/libs/services/bookmarksSynchronising.js b/chrome/content/libs/services/bookmarksSynchronising.js index ff8e263..505883d 100644 --- a/chrome/content/libs/services/bookmarksSynchronising.js +++ b/chrome/content/libs/services/bookmarksSynchronising.js @@ -705,7 +705,7 @@ _DECL_(BookmarksSynchronising, null, Model).prototype = { }, new Callback(this._onNodeConfigured, this)); }, - _onNodeConfigured: function(type) { + _onNodeConfigured: function(type, pkt) { this._trace(arguments); if (type) { diff --git a/chrome/content/libs/services/pep.js b/chrome/content/libs/services/pep.js index 5f26507..fe09a3e 100644 --- a/chrome/content/libs/services/pep.js +++ b/chrome/content/libs/services/pep.js @@ -68,7 +68,7 @@ _DECL_(PEPNodeHandler).prototype = { if (callback) { var error = pkt.getChild(null, "urn:ietf:params:xml:ns:xmpp-stanzas"); var type = pkt.getType() == "result" ? null : error ? error.nodeName : "unknown"; - callback(type); + callback(type, pkt); } yield null;