From 19345af30770ff2ced343cd7913a7a5de26be7c4 Mon Sep 17 00:00:00 2001 From: openshwprojects <85486843+openshwprojects@users.noreply.github.com> Date: Mon, 6 May 2024 08:34:51 +0200 Subject: [PATCH] fix typo pointed by Wolfieee --- src/httpserver/http_fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpserver/http_fns.c b/src/httpserver/http_fns.c index d0e052b0d..920f9867d 100644 --- a/src/httpserver/http_fns.c +++ b/src/httpserver/http_fns.c @@ -171,7 +171,7 @@ int http_fn_index(http_request_t* request) { bForceShowRGB = CFG_HasFlag(OBK_FLAG_LED_FORCE_MODE_RGB); // user override is always stronger, so if no override set - if (bForceShowRGB == false && bForceShowRGB == false) { + if (bForceShowRGB == false && bForceShowRGBCW == false) { #ifndef OBK_DISABLE_ALL_DRIVERS if (DRV_IsRunning("SM16703P")) { bForceShowRGB = true;