Skip to content

Commit

Permalink
Merge pull request #9 from athoik/nofakerec
Browse files Browse the repository at this point in the history
EPGImport: do not try fake recording for services containing url
  • Loading branch information
WanWizard committed Aug 16, 2018
2 parents 0805d0d + 2a0530b commit e47c147
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/EPGImport/plugin.py
Expand Up @@ -183,6 +183,9 @@ def channelFilter(ref):
if refstr in serviceIgnoreList:
print>>log, "Serviceref is in ignore list:", refstr
return False
if "%3a//" in ref.lower():
print>>log, "URL detected in serviceref, not checking fake recording on serviceref:", ref
return True
fakeRecService = NavigationInstance.instance.recordService(sref, True)
if fakeRecService:
fakeRecResult = fakeRecService.start(True)
Expand Down

0 comments on commit e47c147

Please sign in to comment.