Updated isFlipped

This commit is contained in:
Electric
2020-08-24 15:50:47 +03:00
parent 783ab3c018
commit ea1743a3fa
@@ -233,7 +233,7 @@ public class PodsService extends Service {
}
private boolean isFlipped (String str) {
return ((Integer.parseInt("" + str.charAt(10), 16) / 2 ) % 2) == 0;
return (Integer.parseInt("" + str.charAt(10), 16) & 0x02) == 0;
}
/**