Add authentication/online mode support

This commit is contained in:
RednedEpic 2019-07-24 01:29:54 -05:00
parent d6aa75b2f7
commit df6836e12b
6 changed files with 156 additions and 104 deletions

View file

@ -92,7 +92,7 @@ public class CustomFormWindow extends FormWindow {
}
public void setResponse(String data) {
if (data == null || data.equalsIgnoreCase("null")) {
if (data == null || data.equalsIgnoreCase("null") || data.isEmpty()) {
closed = true;
return;
}