diff options
Diffstat (limited to 'dpi')
-rw-r--r-- | dpi/datauri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dpi/datauri.c b/dpi/datauri.c index f8e2ad94..789698d1 100644 --- a/dpi/datauri.c +++ b/dpi/datauri.c @@ -243,7 +243,7 @@ static char *datauri_get_mime(char *url) if (len == 0) { mime_type = dStrdup("text/plain;charset=US-ASCII"); } else if (!dStrnAsciiCasecmp(buf, "charset", 7)) { - mime_type = dStrconcat("text/plain", buf, NULL); + mime_type = dStrconcat("text/plain;", buf, NULL); } else { mime_type = dStrdup(buf); } |