diff --git a/src/graphics/Screen.cpp b/src/graphics/Screen.cpp index 7b34aee55..6c09c89cc 100644 --- a/src/graphics/Screen.cpp +++ b/src/graphics/Screen.cpp @@ -1072,7 +1072,7 @@ int32_t Screen::runOnce() break; case Cmd::ON_PRESS: // If a nag notification is running, stop it - if (externalNotificationModule->nagCycleCutoff != UINT32_MAX) { + if (moduleConfig.external_notification.enabled && (externalNotificationModule->nagCycleCutoff != UINT32_MAX)) { externalNotificationModule->stopNow(); } else { // Don't advance the screen if we just wanted to switch off the nag notification diff --git a/version.properties b/version.properties index 6a242ed9b..4ba2878d1 100644 --- a/version.properties +++ b/version.properties @@ -1,4 +1,4 @@ [VERSION] major = 2 minor = 0 -build = 9 +build = 10