File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 31
31
- #3307 : Fix inconsistency between browsers on textarea outlines
32
32
- #3337 : Correctly display multiline nested quotes
33
33
- #3362 : Don't create empty nick element in bookmarks
34
+ - #3386 : Registration form is not fetched
34
35
- #3476 : better UI for form "fixed" fields
35
36
- #3478 : MUC participant status indicator misplaced
36
37
- #3529 : Unbookmarked channels no longer change their name when clicked with an unread indicator (or text icon)
Original file line number Diff line number Diff line change @@ -94,8 +94,11 @@ class RegisterPanel extends CustomElement {
94
94
const conn = api . connection . get ( ) ;
95
95
conn . connected = true ;
96
96
97
- const body = conn . _proto . _reqToData ( req ) ;
97
+ const body = /** @type {Element } */ (
98
+ '_reqToData' in conn . _proto ? conn . _proto . _reqToData ( /** @type {Request } */ ( req ) ) : req
99
+ ) ;
98
100
if ( ! body ) { return ; }
101
+
99
102
if ( conn . _proto . _connect_cb ( body ) === Strophe . Status . CONNFAIL ) {
100
103
this . status = CHOOSE_PROVIDER ;
101
104
this . setErrorMessage ( __ ( "Sorry, we're unable to connect to your chosen provider." ) ) ;
You can’t perform that action at this time.
0 commit comments