console bug #3807
This commit is contained in:
parent
7e007cc534
commit
5a14b35799
|
@ -76,4 +76,8 @@ public enum FieldType {
|
|||
throw new UnsupportedOperationException("storage size is unclear on " + this);
|
||||
return storageSize;
|
||||
}
|
||||
|
||||
public boolean isString() {
|
||||
return this == STRING;
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20220116;
|
||||
public static final int CONSOLE_VERSION = 20220118;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
|
@ -67,6 +67,8 @@ public class LiveDataParserPanel {
|
|||
Field field = Field.findFieldOrNull(Fields.VALUES, "", setting.getText());
|
||||
if (field == null)
|
||||
continue;
|
||||
if (field.getType().isString())
|
||||
continue;
|
||||
Number value = field.getValue(ci);
|
||||
Rectangle r;
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue