diff options
-rw-r--r-- | dpi/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -483,6 +483,8 @@ static const char *File_ext(const char *filename) !dStrcasecmp(e, "htm") || !dStrcasecmp(e, "shtml")) { return "text/html"; + } else if (!dStrcasecmp(e, "txt")) { + return "text/plain"; } else { return NULL; } |