diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-07-11 08:25:53 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-07-11 08:25:53 +0000 |
| commit | 9672c9e353abdc56784d21567fdb32c03a9aa0b7 (patch) | |
| tree | 7993c6c13c9282198742a33dfc14807eafb58a94 /lib/python/Plugins | |
| parent | 358afcd6beee2a68020dec915bebabd5f3e2a61e (diff) | |
| download | enigma2-9672c9e353abdc56784d21567fdb32c03a9aa0b7.tar.gz enigma2-9672c9e353abdc56784d21567fdb32c03a9aa0b7.zip | |
fix crash on selecting new dvd iso/directory from file browser with a playback already running
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDPlayer/plugin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py index 6a69de42..0db850a4 100644 --- a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py @@ -561,6 +561,8 @@ class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarP if answer[1] == "browser": #TODO check here if a paused dvd playback is already running... then re-start it... #else + if self.service: + self.service = None self.showFileBrowser() else: pass @@ -599,7 +601,6 @@ class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarP self.show() def createSummary(self): - print "DVDCreateSummary" return DVDSummary #override some InfoBarSeek functions |
