Default character encoding in DVB is ISO6937, not Latin-1. Ticket #96

This commit is contained in:
Andreas Öman 2009-09-06 20:17:08 +00:00
parent 6fe9742348
commit e0c48dfd69
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -15,6 +15,8 @@ hts-tvheadend (2.6) hts; urgency=low
* Support for DVB-S2 has been added
* Default character encoding in DVB is ISO6937, not Latin-1. Ticket #96
hts-tvheadend (2.5) hts; urgency=low
* If a previosly detected DVB adapter was not present during startup,

View file

@ -65,7 +65,7 @@ dvb_conversion_init(void)
}
convert_utf8 = dvb_iconv_open("UTF8");
convert_latin1 = dvb_iconv_open("LATIN1");
convert_latin1 = dvb_iconv_open("ISO6937");
}