aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-03-10 23:35:37 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-03-10 23:35:37 +0000
commit8c96830db4f49095820d7abc071d511561bf1561 (patch)
treec7c285b0c7149222ccc5bd95105350220f03492d /lib/service/servicedvb.cpp
parent2e11dda6501bc4a965e42a98c629e820bf806a53 (diff)
downloadenigma2-8c96830db4f49095820d7abc071d511561bf1561.tar.gz
enigma2-8c96830db4f49095820d7abc071d511561bf1561.zip
fix removing .eit files
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index a0c1cbc7..6e2d9610 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -251,7 +251,9 @@ RESULT eDVBPVRServiceOfflineOperations::getListOfFilenames(std::list<std::string
res.push_back(m_ref.path + ".meta");
res.push_back(m_ref.path + ".ap");
res.push_back(m_ref.path + ".cuts");
- res.push_back(m_ref.path + ".eit");
+ std::string tmp = m_ref.path;
+ tmp.erase(m_ref.path.length()-3);
+ res.push_back(tmp + ".eit");
return 0;
}