summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/shortcuts.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index 6997491424..e8ea1df0d9 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -270,15 +270,13 @@ int readline_cb(int n, char *buf, void *parameters)
break;
case SHORTCUT_TIME:
#if CONFIG_RTC
+ sc->u.timedata.talktime = false;
if (!strcasecmp(value, "talk"))
sc->u.timedata.talktime = true;
else
#endif
if (!strncasecmp(value, "sleep ", strlen("sleep ")))
- {
- sc->u.timedata.talktime = false;
sc->u.timedata.sleep_timeout = atoi(&value[strlen("sleep ")]);
- }
else
sc->type = SHORTCUT_UNDEFINED; /* error */
break;