diff --git a/wled00/cfg.cpp b/wled00/cfg.cpp
index 7c7fbc4d1..4bd251e33 100644
--- a/wled00/cfg.cpp
+++ b/wled00/cfg.cpp
@@ -261,6 +261,7 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
CJSON(receiveNotificationEffects, if_sync_recv["fx"]);
CJSON(receiveGroups, if_sync_recv["grp"]);
CJSON(receiveSegmentOptions, if_sync_recv["seg"]);
+ CJSON(receiveSegmentBounds, if_sync_recv["sb"]);
//! following line might be a problem if called after boot
receiveNotifications = (receiveNotificationBrightness || receiveNotificationColor || receiveNotificationEffects || receiveSegmentOptions);
@@ -673,9 +674,10 @@ void serializeConfig() {
JsonObject if_sync_recv = if_sync.createNestedObject("recv");
if_sync_recv["bri"] = receiveNotificationBrightness;
if_sync_recv["col"] = receiveNotificationColor;
- if_sync_recv["fx"] = receiveNotificationEffects;
+ if_sync_recv["fx"] = receiveNotificationEffects;
if_sync_recv["grp"] = receiveGroups;
if_sync_recv["seg"] = receiveSegmentOptions;
+ if_sync_recv["sb"] = receiveSegmentBounds;
JsonObject if_sync_send = if_sync.createNestedObject("send");
if_sync_send[F("dir")] = notifyDirect;
diff --git a/wled00/data/settings_sync.htm b/wled00/data/settings_sync.htm
index bb5b740e7..308ba1216 100644
--- a/wled00/data/settings_sync.htm
+++ b/wled00/data/settings_sync.htm
@@ -83,7 +83,7 @@ UDP Port:
Receive: Brightness, Color, and Effects
- Segment options
+ Segment options, bounds
Send notifications on direct change:
Send notifications on button press or IR:
Send Alexa notifications:
diff --git a/wled00/html_other.h b/wled00/html_other.h
index be5df94d0..65b2139c9 100644
--- a/wled00/html_other.h
+++ b/wled00/html_other.h
@@ -85,7 +85,7 @@ charset="utf-8">