X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=Navigation.py;h=451b6da18ad89db2f2347a7c92a77db67086299e;hp=2437bbf5ecf5e4c594f2e7aafba7657a4d6bfa2b;hb=111726307a7dee30c221e10ff144ed27ffb6283c;hpb=c430cd50ce7bc9e0a91bccb558e54dafc8d5ef75 diff --git a/Navigation.py b/Navigation.py index 2437bbf..451b6da 100644 --- a/Navigation.py +++ b/Navigation.py @@ -53,9 +53,10 @@ class Navigation: def playService(self, ref, checkParentalControl = True, forceRestart = False): oldref = self.currentlyPlayingServiceReference if ref and oldref and ref == oldref and not forceRestart: - print "ignore request to play already running service" + print "ignore request to play already running service(1)" return 0 - print "playing", ref and ref.toString() + #print "playing", ref and ref.toString() + print "playing service.." if ref is None: self.stopService() return 0 @@ -64,6 +65,10 @@ class Navigation: if not oldref: oldref = eServiceReference() playref = getBestPlayableServiceReference(ref, oldref) + print "playref", playref + if playref and oldref and playref == oldref and not forceRestart: + print "ignore request to play already running service(2)" + return 0 if not playref or (checkParentalControl and not parentalControl.isServicePlayable(playref, boundFunction(self.playService, checkParentalControl = False))): self.stopService() return 0 @@ -108,6 +113,7 @@ class Navigation: print "stopService" if self.pnav: self.pnav.stopService() + self.currentlyPlayingServiceReference = None def pause(self, p): return self.pnav and self.pnav.pause(p) @@ -119,3 +125,4 @@ class Navigation: def stopUserServices(self): self.stopService() +