parseGarbage ignored the detected encoding!

This commit is contained in:
Adam D. Ruppe 2011-12-02 22:37:23 -05:00
parent f11a3de560
commit 1aa4e8ff79
1 changed files with 2 additions and 2 deletions

4
dom.d
View File

@ -2325,7 +2325,7 @@ class Document : FileResource {
}
string _contentType = "text/html";
string _contentType = "text/html; charset=utf-8";
/// If you're using this for some other kind of XML, you can
/// set the content type here.
@ -2445,7 +2445,7 @@ class Document : FileResource {
if(strict)
enforce(dataEncoding !is null, "I couldn't figure out the encoding of this document.");
else {
else if(dataEncoding is null) {
// if we really don't know by here, it means we already tried UTF-8,
// looked for utf 16 and 32 byte order marks, and looked for xml or meta
// tags... let's assume it's Windows-1252, since that's probably the most