mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-10-29 11:47:01 +00:00
null message in CreateAccountWizard
This commit is contained in:
parent
ebacb49117
commit
98164a6e29
@ -228,7 +228,7 @@ public class AccountCreationWizard extends JPanel {
|
||||
connection = getConnection();
|
||||
}
|
||||
catch (SmackException | IOException | XMPPException e) {
|
||||
th = e.getCause().getMessage();
|
||||
th = e.getCause() == null ? e.getMessage() : e.getCause().getMessage();
|
||||
return e;
|
||||
}
|
||||
try {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user