From ad603aa2c3e4576eafd1df8ced1a5fc19937e4df Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Thu, 17 Nov 2022 23:01:40 +0300 Subject: [PATCH] light: another ambiguous type --- code/espurna/light.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/espurna/light.cpp b/code/espurna/light.cpp index 496e21b9..60082528 100644 --- a/code/espurna/light.cpp +++ b/code/espurna/light.cpp @@ -2586,7 +2586,7 @@ void _lightWebSocketOnVisible(JsonObject& root) { const auto Channels = _light_channels.size(); for (size_t index = 0; index < Channels; ++index) { - channels.add(_lightTag(Channels, index)); + channels.add(String(_lightTag(Channels, index))); } if (_light_use_cct) {