diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-04-14 15:10:50 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-04-14 15:10:50 +0000 |
| commit | 47367fb1c159557cb3676f67172b9839531c8dc9 (patch) | |
| tree | 8fcf5ec00c058528ce2fd8113b77d4f2250cd75c /lib/service/servicedvb.cpp | |
| parent | efc5aca651306518e6f21a6bd7cbfa1928821b60 (diff) | |
| download | enigma2-47367fb1c159557cb3676f67172b9839531c8dc9.tar.gz enigma2-47367fb1c159557cb3676f67172b9839531c8dc9.zip | |
better handling for eServiceFS file extensions
Diffstat (limited to 'lib/service/servicedvb.cpp')
| -rw-r--r-- | lib/service/servicedvb.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index a8485fa4..cd4d3394 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -668,7 +668,11 @@ eServiceFactoryDVB::eServiceFactoryDVB() eServiceCenter::getPrivInstance(sc); if (sc) - sc->addServiceFactory(eServiceFactoryDVB::id, this); + { + std::list<std::string> extensions; + extensions.push_back("ts"); + sc->addServiceFactory(eServiceFactoryDVB::id, this, extensions); + } m_StaticServiceDVBInfo = new eStaticServiceDVBInformation; m_StaticServiceDVBBouquetInfo = new eStaticServiceDVBBouquetInformation; |
