Skip to content

Commit 1ac02bc

Browse files
blazonceksofthack007
authored andcommittedDec 12, 2023
Bugfix wled#3561
1 parent 45dc9aa commit 1ac02bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎wled00/set.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
131131
pins[i] = (request->arg(lp).length() > 0) ? request->arg(lp).toInt() : 255;
132132
}
133133
type = request->arg(lt).toInt();
134-
type |= request->hasArg(rf) << 7; // off refresh override
135134
skip = request->arg(sl).toInt();
136135
colorOrder = request->arg(co).toInt();
137136
start = (request->hasArg(ls)) ? request->arg(ls).toInt() : t;
@@ -164,6 +163,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
164163
freqHz = 0;
165164
}
166165
channelSwap = (type == TYPE_SK6812_RGBW || type == TYPE_TM1814) ? request->arg(wo).toInt() : 0;
166+
type |= request->hasArg(rf) << 7; // off refresh override
167167
// actual finalization is done in WLED::loop() (removing old busses and adding new)
168168
// this may happen even before this loop is finished so we do "doInitBusses" after the loop
169169
if (busConfigs[s] != nullptr) delete busConfigs[s];

0 commit comments

Comments
 (0)
Please sign in to comment.