sreichholf / dreamDroid

DreamDroid is an open-source enigma2 client for android based devices.
https://dreamdroid.org
GNU General Public License v3.0
107 stars 43 forks source link

Illegal charakters in some Lists #11

Closed DocSnyd3r closed 13 years ago

DocSnyd3r commented 13 years ago

I get some illegal characters in timer and movie view.

DocSnyd3r commented 13 years ago

Sreenshot http://www.pic-upload.de/view-7299959/device.png.html

DocSnyd3r commented 13 years ago

Fixed it by filtering illegal chars in the xml file In E2MovieListHandler

mMovie.putOrConcat(Movie.SERVICE_NAME, value.replaceAll("\p{Cntrl}", "")); //remove illegal chars

sreichholf commented 13 years ago

done