Don't display the termination dialog for intended terminations

This commit is contained in:
Cameron Gutman 2019-02-10 02:28:11 -08:00
parent f8ba7cf190
commit 6a939e7495
2 changed files with 10 additions and 3 deletions

View File

@ -1322,9 +1322,16 @@ public class Game extends Activity implements SurfaceHolder.Callback,
LimeLog.severe("Connection terminated: " + errorCode);
stopConnection();
// Display the error dialog if it was an unexpected termination.
// Otherwise, just finish the activity immediately.
if (errorCode != 0) {
Dialog.displayDialog(Game.this, getResources().getString(R.string.conn_terminated_title),
getResources().getString(R.string.conn_terminated_msg), true);
}
else {
finish();
}
}
}
});
}

@ -1 +1 @@
Subproject commit 433b2a036aa868b2d2847e880897fa13493443fc
Subproject commit 8190dffe99c33588b0ba280e3ed183d5a3853fc1