Updated based on more feedback

This commit is contained in:
Todd Meyer 2024-05-03 08:30:37 -07:00
parent 5e38039c4d
commit 6df3b417a9

View File

@ -487,9 +487,7 @@ bool deserializeState(JsonObject root, byte callMode, byte presetId)
}
}
if (root.containsKey(F("np"))) {
doAdvancePlaylist = root[F("np")].as<bool>(); //advances to next preset in playlist when true
}
doAdvancePlaylist = root["np"].as<bool>() || doAdvancePlaylist; //advances to next preset in playlist when true
JsonObject wifi = root[F("wifi")];
if (!wifi.isNull()) {