Fixing yet another NRE
This commit is contained in:
@@ -212,7 +212,7 @@ public class HallRequestHandler extends LotroServerRequestHandler implements Uri
|
||||
private boolean IgnoreError(Exception ex) {
|
||||
String msg = ex.getMessage();
|
||||
|
||||
if(msg.contains("You don't have a deck registered yet") ||
|
||||
if(msg != null && msg.contains("You don't have a deck registered yet") ||
|
||||
msg.contains("Your selected deck is not valid for this format"))
|
||||
return true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user