1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-22 21:23:07 +03:00

FIX MIME-Type for txt-suffix (#7608)

correct mime is text/plain instead of .txt
This commit is contained in:
The-MEO 2020-09-22 17:41:31 +02:00 committed by GitHub
parent 3cbf3039bd
commit 4a24d3cc16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ const Entry mimeTable[maxType] PROGMEM =
{ {
{ kHtmlSuffix, kHtml }, { kHtmlSuffix, kHtml },
{ kHtmSuffix, kHtml }, { kHtmSuffix, kHtml },
{ kTxtSuffix, kTxtSuffix }, { kTxtSuffix, kTxt },
#ifndef MIMETYPE_MINIMAL #ifndef MIMETYPE_MINIMAL
{ kCssSuffix, kCss }, { kCssSuffix, kCss },
{ kJsSuffix, kJs }, { kJsSuffix, kJs },