1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 00:08:51 -05:00

* use ISO-8859-1 as http default charset

This commit is contained in:
Reinhard Pointner 2009-08-10 12:09:17 +00:00
parent 3ff3a85289
commit e58947e6a4

View File

@ -145,8 +145,8 @@ public final class WebRequest {
}
}
// use UTF-8 if charset cannot be determined
return Charset.forName("UTF-8");
// use http default encoding if charset cannot be determined
return Charset.forName("ISO-8859-1");
}