diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-11-12 23:35:08 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-11-12 23:35:08 +0100 |
| commit | 20b2ca73126d6ae1bdafa4c763a0e1c663ed0806 (patch) | |
| tree | 3210f61cc73854e3dc73b512debb365bd3a16b38 /lib/dvb/scan.cpp | |
| parent | 47c5768da94377e1cea40a3d45a2e6f0cc9dafb6 (diff) | |
| download | enigma2-20b2ca73126d6ae1bdafa4c763a0e1c663ed0806.tar.gz enigma2-20b2ca73126d6ae1bdafa4c763a0e1c663ed0806.zip | |
properly escape provider name. fixes #54.
Diffstat (limited to 'lib/dvb/scan.cpp')
| -rw-r--r-- | lib/dvb/scan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index 2457763a..71893f95 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -758,7 +758,7 @@ void eDVBScan::channelDone() SCAN_eDebug("name '%s', provider_name '%s'", sname, pname); service->m_service_name = convertDVBUTF8(sname); service->genSortName(); - service->m_provider_name = pname; + service->m_provider_name = convertDVBUTF8(pname); } if (!(m_flags & scanOnlyFree) || !m_pmt_in_progress->second.scrambled) { |
