Merge pull request #44 from mc-hamster/osthread

Fix for breaking the linux build
This commit is contained in:
Jm Casler 2021-01-09 13:47:43 -08:00 committed by GitHub
commit 7a381eaea1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@
#include "NodeDB.h"
#include "PowerFSM.h"
#include "airtime.h"
#include "esp_task_wdt.h"
#include "main.h"
#include "mesh/wifi/ContentHelper.h"
#include "mesh/wifi/ContentStatic.h"
@ -15,6 +14,9 @@
#include <WebServer.h>
#include <WiFi.h>
#ifndef NO_ESP32
#include "esp_task_wdt.h"
#endif
// Persistant Data Storage
#include <Preferences.h>
@ -1225,4 +1227,3 @@ void handleFavicon(HTTPRequest *req, HTTPResponse *res)
// Write data from header file
res->write(FAVICON_DATA, FAVICON_LENGTH);
}