Skip to content

Commit

Permalink
[EventView] Avoid blocking recording from streams
Browse files Browse the repository at this point in the history
This was only intended to stop attempting to start an instant recording when replaying from a file.
  • Loading branch information
Huevos committed Nov 30, 2022
1 parent 9479fd2 commit 30f87b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/EventView.py
Expand Up @@ -49,7 +49,7 @@ def __init__(self, event, ref, callback=None, similarEPGCB=None):
self.similarEPGCB = similarEPGCB
self.cbFunc = callback
self.currentService = ref
self.isRecording = (not ref.ref.flags & eServiceReference.isGroup) and ref.ref.getPath()
self.isRecording = not ref.ref.flags & eServiceReference.isGroup and ref.ref.getPath() and "%3a//" not in ref.ref.toString()
self.event = event
self["Service"] = ServiceEvent()
self["Event"] = Event()
Expand Down

0 comments on commit 30f87b8

Please sign in to comment.