From c78375655970fa9f0bda969298a7e00be4ae6c24 Mon Sep 17 00:00:00 2001 From: Barbudor Date: Wed, 3 Feb 2021 16:13:21 +0100 Subject: [PATCH] LITTLEFS.h casing for ESP32 --- tasmota/sendemail.ino | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasmota/sendemail.ino b/tasmota/sendemail.ino index cd7f849ce..dd2539b4f 100644 --- a/tasmota/sendemail.ino +++ b/tasmota/sendemail.ino @@ -416,7 +416,12 @@ void xsend_message_txt(char *msg) { } #if (defined(USE_SCRIPT_FATFS) && defined(USE_SCRIPT)) || defined(USE_UFILESYS) +#ifdef ESP8266 #include +#endif // ESP8266 +#ifdef ESP32 +#include +#endif // ESP32 extern FS *ufsp; void attach_File(char *path) {