Pebble: fix Pebble LE address not being propery added to device attributes

here
Andreas Shimokawa 2016-11-27 22:45:57 +01:00
parent d9e20b161a
commit 109a032f1e
1 changed files with 3 additions and 0 deletions

View File

@ -345,6 +345,9 @@ public class DBHelper {
if (!Objects.equals(attr.getFirmwareVersion2(), gbDevice.getFirmwareVersion2())) {
return false;
}
if (!Objects.equals(attr.getVolatileIdentifier(), gbDevice.getVolatileAddress())) {
return false;
}
return true;
}