Skip to content

Commit

Permalink
v0.65
Browse files Browse the repository at this point in the history
- fixes a bug, where notifications are not shown when youre using an icon. sorry for the circumstances
  • Loading branch information
Blueforcer committed May 16, 2023
1 parent e27281f commit 185993e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/DisplayManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 185993e

Please sign in to comment.