diff --git a/tasmota/xdrv_13_display.ino b/tasmota/xdrv_13_display.ino index c3ecd407b..01e353229 100755 --- a/tasmota/xdrv_13_display.ino +++ b/tasmota/xdrv_13_display.ino @@ -952,6 +952,7 @@ void DisplayText(void) extern FS *ufsp; void Display_Text_From_File(const char *file) { File fp; + if (!ufsp) return; fp = ufsp->open(file, FS_FILE_READ); if (fp >= 0) { char *savptr = XdrvMailbox.data;