Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ public static List<String> joinRoom(MultiUserChat groupChat, Resourcepart nickna
error = ( (XMPPException.XMPPErrorException) ex ).getStanzaError();
}

final String errorText = ConferenceUtils.getReason( error );
String errorText = Res.getString("title.join.conference.room");
if (groupChat.getRoom() != null) { errorText += " " + groupChat.getRoom(); }
errorText += ": " + ConferenceUtils.getReason( error );
errors.add( errorText );
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ public Object construct()
}
}

final String errorText = ConferenceUtils.getReason( error );
String errorText = Res.getString("title.join.conference.room");
errorText += " " + roomJID;
errorText += ": " + ConferenceUtils.getReason( error );

errors.add( errorText );
return null;
}
Expand Down