From c0bec459a029f9b7e4208800997ed8c213747c11 Mon Sep 17 00:00:00 2001 From: JC Brand Date: Wed, 6 May 2015 16:46:37 +0200 Subject: [PATCH] Bugfix. See below. Manual login doesn't work when websocket_url is set and not bosh_service_url It's already a while since we don't include an input for the bosh_service_url in the login panel. --- converse.js | 8 -------- docs/CHANGES.rst | 5 +++-- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/converse.js b/converse.js index 77f01d7bc..f24956fbe 100644 --- a/converse.js +++ b/converse.js @@ -5359,14 +5359,6 @@ $bsu_input = null, errors = false; - if (! converse.bosh_service_url) { - $bsu_input = $form.find('input#bosh_service_url'); - converse.bosh_service_url = $bsu_input.val(); - if (! converse.bosh_service_url) { - errors = true; - $bsu_input.addClass('error'); - } - } if (! jid) { errors = true; $jid_input.addClass('error'); diff --git a/docs/CHANGES.rst b/docs/CHANGES.rst index a6ee2549a..02e78664d 100644 --- a/docs/CHANGES.rst +++ b/docs/CHANGES.rst @@ -1,18 +1,19 @@ Changelog ========= -0.9.4 (2015-05-01) +0.9.4 (Unreleased) ------------------ * Refactored in order to remove the strophe.roster.js dependency. [jcbrand] +* Bugfix. Manual login doesn't work when only websocket_url is set and not bosh_service_url. [jcbrand] 0.9.3 (2015-05-01) ------------------ -* Add the ability to log in anonymously. [jcbrand] * Add the ability to log in automatically. [jcbrand] * Remove ``type=email`` from JID field in login form. Resulting validation error confuses people. [jcbrand] * Add Ukranian translations [Andriy Kopystyansky] +* #244 Add the ability to log in anonymously. [jcbrand] * #344 Enable the path to the sound files to be configured [thierrytiti and jcbrand] * #370 Unable to register a new user to ejabberd 2.1.11. [gbonvehi] * #372 Some offline users have a visible empty
in the roster. [floriancargoet]