X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dba614edd2aad3c17e244914eaef3809d8300cb1..a92e58b2a8fc37e0a838593676bc5e065c4d28f6:/lib/service/event.cpp diff --git a/lib/service/event.cpp b/lib/service/event.cpp index 58079da0..482527cc 100644 --- a/lib/service/event.cpp +++ b/lib/service/event.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -17,8 +18,8 @@ RESULT eServiceEvent::parseFrom(Event *evt) case SHORT_EVENT_DESCRIPTOR: { const ShortEventDescriptor *sed = (ShortEventDescriptor*)*desc; - m_event_name = sed->getEventName(); - m_description = sed->getText(); + m_event_name = convertDVBUTF8(sed->getEventName()); + m_description = convertDVBUTF8(sed->getText()); break; } }