From 7f98139debe6ab9b5c2be47464478ad46eec0c7c Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 13 Jun 2026 17:24:29 +0200 Subject: [PATCH] add missing commands to restore --- src/core/system.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index 0bf2ec654..4a01ee7e7 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -1276,6 +1276,9 @@ bool System::check_restore() { // continue processing the rest of the sections saveSettings(EMSESP_SETTINGS_FILE, section); } + if (section_type == "commands") { + saveSettings(EMSESP_COMMANDS_FILE, section); + } if (section_type == "schedule") { saveSettings(EMSESP_SCHEDULER_FILE, section); }