File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
131
131
pins[i] = (request->arg (lp).length () > 0 ) ? request->arg (lp).toInt () : 255 ;
132
132
}
133
133
type = request->arg (lt).toInt ();
134
- type |= request->hasArg (rf) << 7 ; // off refresh override
135
134
skip = request->arg (sl).toInt ();
136
135
colorOrder = request->arg (co).toInt ();
137
136
start = (request->hasArg (ls)) ? request->arg (ls).toInt () : t;
@@ -164,6 +163,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
164
163
freqHz = 0 ;
165
164
}
166
165
channelSwap = (type == TYPE_SK6812_RGBW || type == TYPE_TM1814) ? request->arg (wo).toInt () : 0 ;
166
+ type |= request->hasArg (rf) << 7 ; // off refresh override
167
167
// actual finalization is done in WLED::loop() (removing old busses and adding new)
168
168
// this may happen even before this loop is finished so we do "doInitBusses" after the loop
169
169
if (busConfigs[s] != nullptr ) delete busConfigs[s];
You can’t perform that action at this time.
0 commit comments