Correctly identify computers that are the same

This commit is contained in:
Cameron Gutman 2015-02-08 23:46:03 -05:00
parent aee34f6365
commit 057530eed0

View File

@ -127,7 +127,7 @@ public class AppView extends Activity implements AdapterFragmentCallbacks {
@Override @Override
public void notifyComputerUpdated(ComputerDetails details) { public void notifyComputerUpdated(ComputerDetails details) {
// Don't care about other computers // Don't care about other computers
if (details != computer) { if (!details.uuid.toString().equalsIgnoreCase(uuidString)) {
return; return;
} }