X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e5f1c45c07b1ff43c0113a51128f60bd3e348aa4..d0ff64b9296711c98abcaf637f26ffb914ab5d06:/lib/service/servicefs.cpp diff --git a/lib/service/servicefs.cpp b/lib/service/servicefs.cpp index f2772192..728bb460 100644 --- a/lib/service/servicefs.cpp +++ b/lib/service/servicefs.cpp @@ -142,17 +142,17 @@ RESULT eServiceFS::getContent(std::list &list, bool sorted) if (extension == ".ts") type = eServiceFactoryDVB::id; else if (extension == ".mp3") - type = 4097; + type = 0x1001; else if (extension == ".ogg") - type = 4097; + type = 0x1001; else if (extension == ".mpg") - type = 4097; + type = 0x1001; else if (extension == ".vob") - type = 4097; + type = 0x1001; else if (extension == ".wav" || extension == ".wave") - type = 4097; + type = 0x1001; else if (extension == ".m3u" || extension == ".pls" || extension == ".e2pls") - type = 4098; + type = 4098; // ?? this id is not defined in any service handler, just in python code. if (type != -1) {