diff --git a/src/DisplayManager.cpp b/src/DisplayManager.cpp index 5607b1b8..fdf614f6 100644 --- a/src/DisplayManager.cpp +++ b/src/DisplayManager.cpp @@ -757,13 +757,13 @@ void DisplayManager_::generateNotification(const char *json) { newNotification.isGif = false; newNotification.icon = LittleFS.open("/ICONS/" + iconFileName + ".jpg"); - return; + } else if (LittleFS.exists("/ICONS/" + iconFileName + ".gif")) { newNotification.isGif = true; newNotification.icon = LittleFS.open("/ICONS/" + iconFileName + ".gif"); - return; + } else { diff --git a/src/Globals.cpp b/src/Globals.cpp index faae6896..6e99ae0c 100644 --- a/src/Globals.cpp +++ b/src/Globals.cpp @@ -216,7 +216,7 @@ IPAddress gateway; IPAddress subnet; IPAddress primaryDNS; IPAddress secondaryDNS; -const char *VERSION = "0.64"; +const char *VERSION = "0.65"; String MQTT_HOST = ""; uint16_t MQTT_PORT = 1883;