diff --git a/esp8266-fastled-iot-webserver.ino b/esp8266-fastled-iot-webserver.ino
index b27cffcc1afdef545199c3d30f05bf25a045ca9d..8daff3304622db3272432b41a5e9eff4e2cef8d3 100644
--- a/esp8266-fastled-iot-webserver.ino
+++ b/esp8266-fastled-iot-webserver.ino
@@ -877,7 +877,7 @@ void setup() {
         }
         });
 
-    addRebootPage();
+    addRebootPage(0);
 
     webServer.on("/alexa", HTTP_GET, []() {
         IPAddress ip = WiFi.localIP();
@@ -3632,7 +3632,7 @@ void AlexaStrobeEvent(EspalexaDevice* d) {
     static int lb;
     if ((lr != NULL && lr != d->getR() && lg != d->getG() && lb != d->getB()) || currentPatternIndex == patternCount - 1)
     {
-        setSolidColor(d->getR(), d->getG(), d->getB());
+        setSolidColor(d->getR(), d->getG(), d->getB(), true);
         setPattern(12);
     }
     lr = d->getR();