We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a369dc3 commit f612841Copy full SHA for f612841
Firmware/RTK_Everywhere/menuCommands.ino
@@ -2016,9 +2016,11 @@ void createSettingsString(char *newSettings)
2016
}
2017
stringRecord(newSettings, "lastState", lastState);
2018
2019
+ /* This is a duplicate - from olden times? See #719 It's probably not doing any harm. But still... TODO: remove it
2020
stringRecord(
2021
newSettings, "profileName",
2022
profileNames[profileNumber]); // Must come before profile number so AP config page JS has name before number
2023
+ */
2024
stringRecord(newSettings, "profileNumber", profileNumber);
2025
for (int index = 0; index < MAX_PROFILE_COUNT; index++)
2026
{
0 commit comments