We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9cca62 commit a6b38b3Copy full SHA for a6b38b3
1 file changed
android/sdl_android/src/main/java/com/smartdevicelink/managers/lockscreen/LockScreenManager.java
@@ -203,7 +203,7 @@ public void onNotified(RPCNotification notification) {
203
driverDistStatus = DriverDistractionState.DD_ON.equals(ddState.getState());
204
mLockscreenWarningMsg = ddState.getLockscreenWarningMessage();
205
boolean previousDismissibleState = isLockscreenDismissible;
206
- if(ddState.getLockscreenDismissibility() == null ) {
+ if(ddState.getLockscreenDismissibility() != null ) {
207
isLockscreenDismissible = ddState.getLockscreenDismissibility();
208
} //If the param is null, we assume it stays as the previous value
209
0 commit comments