REO progress

more bugfixing
This commit is contained in:
rusefi 2020-06-22 21:10:23 -04:00
parent 6e27b8b988
commit 3be0b3326c
1 changed files with 4 additions and 1 deletions

View File

@ -88,7 +88,10 @@ public class Msq {
public Page findPage() {
for (Page p : page) {
if (p.getSize() == Fields.TOTAL_CONFIG_SIZE) {
Integer size = p.getSize();
if (size == null)
continue;
if (size == Fields.TOTAL_CONFIG_SIZE) {
return p;
}
}