mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-12 01:24:04 +00:00
[C015] Blynk: Fix compile-error when enabling the SSL option
This commit is contained in:
+1
-1
@@ -120,7 +120,7 @@ bool CPlugin_015(CPlugin::Function function, struct EventStruct *event, String&
|
||||
case CPlugin::Function::CPLUGIN_WEBFORM_LOAD:
|
||||
{
|
||||
char thumbprint[60] = {0};
|
||||
LoadCustomControllerSettings(event->ControllerIndex, reinterpret_cast<const uint8_t *>(&thumbprint), sizeof(thumbprint));
|
||||
LoadCustomControllerSettings(event->ControllerIndex, reinterpret_cast<uint8_t *>(&thumbprint), sizeof(thumbprint));
|
||||
|
||||
if (strlen(thumbprint) != 59) {
|
||||
strcpy(thumbprint, CPLUGIN_015_DEFAULT_THUMBPRINT);
|
||||
|
||||
Reference in New Issue
Block a user