Include 39 as valid value

This commit is contained in:
AdrianLxM 2019-04-28 14:33:04 +02:00 committed by GitHub
parent 0bab2e6c11
commit 3a7b00f424
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -434,7 +434,7 @@ public class DatabaseHelper extends OrmLiteSqliteOpenHelper {
return null;
for (int i = 0; i < bgList.size(); i++)
if (bgList.get(i).value > 39)
if (bgList.get(i).value >= 39)
return bgList.get(i);
return null;
}