From f893e9431246c9c2136f1dea267cecaf58946831 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sat, 6 Dec 2014 19:05:27 +0100 Subject: [PATCH] rid, jid and sid weren't being set. fixes #285 --- converse.js | 3 +++ docs/CHANGES.rst | 1 + 2 files changed, 4 insertions(+) diff --git a/converse.js b/converse.js index 0af01c0cd..f0f08a720 100644 --- a/converse.js +++ b/converse.js @@ -239,16 +239,19 @@ hide_muc_server: false, hide_offline_users: false, i18n: locales.en, + jid: undefined, keepalive: false, message_carbons: false, no_trimming: false, // Set to true for phantomjs tests (where browser apparently has no width) play_sounds: false, prebind: false, providers_link: 'https://xmpp.net/directory.php', // Link to XMPP providers shown on registration page + rid: undefined, roster_groups: false, show_controlbox_by_default: false, show_only_online_users: false, show_toolbar: true, + sid: undefined, storage: 'session', use_otr_by_default: false, use_vcards: true, diff --git a/docs/CHANGES.rst b/docs/CHANGES.rst index 527331999..7edf3afc4 100644 --- a/docs/CHANGES.rst +++ b/docs/CHANGES.rst @@ -6,6 +6,7 @@ Changelog * Bugfix. Login panel didn't appear under certain conditions. [jcbrand] * Text on the registration form was not configurable or i18n aware. [jcbrand] +* #285 With prebind the jid, rid and sid settings were ignored. [jcbrand] 0.8.5 (2014-12-01) ------------------