Rename destination for getSettingsJS

Use a name that makes it a bit clearer what the output is.  The new name
is applied consistently through most uses.
Usermods are not yet updated.
This commit is contained in:
Will Miles
2024-09-18 19:19:40 -04:00
parent ae1df20893
commit 45cf90094a
4 changed files with 298 additions and 298 deletions

View File

@@ -73,9 +73,9 @@ bool UsermodManager::add(Usermod* um)
/* Usermod v2 interface shim for oappend */
Print* Usermod::oappend_shim = nullptr;
void Usermod::appendConfigData(Print& p) {
void Usermod::appendConfigData(Print& settingsScript) {
assert(!oappend_shim);
oappend_shim = &p;
oappend_shim = &settingsScript;
this->appendConfigData();
oappend_shim = nullptr;
}