Fix WLED UI handling non supported segment streaming (#1610)

This commit is contained in:
LordGrey
2023-07-10 20:39:35 +02:00
committed by GitHub
parent af1a31b842
commit 64642a4457
2 changed files with 5 additions and 6 deletions

View File

@@ -301,7 +301,7 @@ bool LedDeviceWled::isReadyForSegmentStreaming(semver::version& version) const
}
else
{
Error(_log, "Version provided to test for streaming readiness is not valid ");
Error(_log, "Version provided to test for segment streaming readiness is not valid ");
}
return isReady;
}
@@ -325,7 +325,7 @@ bool LedDeviceWled::isReadyForDDPStreaming(semver::version& version) const
}
else
{
Error(_log, "Version provided to test for streaming readiness is not valid ");
Error(_log, "Version provided to test for DDP streaming readiness is not valid ");
}
return isReady;
}