diff options
Diffstat (limited to 'lib/service/event.cpp')
| -rw-r--r-- | lib/service/event.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
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 <lib/service/event.h> +#include <lib/base/estring.h> #include <lib/dvb_si/eit.h> #include <lib/dvb_si/short_event_descriptor.h> #include <lib/dvb_si/descriptor_tag.h> @@ -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; } } |
