remove theme max num chekc to allow adding themes purely by front-end

This commit is contained in:
2017-09-18 01:58:15 +02:00
parent 079b522540
commit 781cf8825b
+1 -1
View File
@@ -173,7 +173,7 @@ cgiTermCfgSetParams(HttpdConnData *connData)
if (GET_ARG("theme")) {
cgi_dbg("Screen color theme: %s", buff);
n = atoi(buff);
if (n >= 0 && n <= 5) { // ALWAYS ADJUST WHEN ADDING NEW THEME!
if (n >= 0) {
termconf->theme = (u8) n;
// this can't be notified, page must reload.
} else {