Merge branch 'dev_hengyang_base' of http://gitlab.zhidaoauto.com/ecos/yycp-service/Launcher into dev_hengyang_base

This commit is contained in:
zhongchao
2021-06-21 10:22:04 +08:00
4 changed files with 17 additions and 26 deletions

View File

@@ -159,7 +159,7 @@ public class MogoStatusManager implements IMogoStatusManager {
private boolean get_bool_val(StatusDescriptor descriptor ) {
Boolean val = mStatus.get( descriptor );
return val == null ? false : val;
return val != null && val;
}
@Override