Merge branch 'bug_461_play_another_timeshift_file_after_eof' into experimental
[vuplus_dvbapp] / lib / python / Components / Sources / CurrentService.py
index 8e582d5..2501c17 100644 (file)
@@ -3,8 +3,6 @@ from enigma import iPlayableService
 from Source import Source
 from Components.Element import cached
 
-from time import time
-
 class CurrentService(PerServiceBase, Source):
        def __init__(self, navcore):
                Source.__init__(self)
@@ -29,3 +27,8 @@ class CurrentService(PerServiceBase, Source):
                return self.navcore.getCurrentService()
 
        service = property(getCurrentService)
+
+       def destroy(self):
+               PerServiceBase.destroy(self)
+               Source.destroy(self)
+