Only close the app list activity if the PC is offline not unknown

This commit is contained in:
Cameron Gutman 2015-02-27 15:15:01 -05:00
parent 867b703644
commit 0dad2dc64b

View File

@ -129,7 +129,7 @@ public class AppView extends Activity implements AdapterFragmentCallbacks {
return; return;
} }
if (details.state != ComputerDetails.State.ONLINE) { if (details.state == ComputerDetails.State.OFFLINE) {
// The PC is unreachable now // The PC is unreachable now
AppView.this.runOnUiThread(new Runnable() { AppView.this.runOnUiThread(new Runnable() {
@Override @Override