Ignore unavailable elements (#119)

This commit is contained in:
Mr. Pine
2025-05-28 17:04:57 +02:00
committed by GitHub
parent 34564cedb4
commit 549ce6cce9
2 changed files with 12 additions and 0 deletions

View File

@ -329,6 +329,15 @@ instance's greatest bottleneck.
# directory escape attacks.
element_path = PurePath(parent_path, element.name)
# This is symptomatic of no access to the element, for example, because
# of time availability restrictions.
if "cmdClass=ilInfoScreenGUI" in element.url and "cmd=showSummary" in element.url:
log.explain(
"Skipping element as url points to info screen, "
"this should only happen with not-yet-released elements"
)
return None
if element.type in _VIDEO_ELEMENTS:
if not self._videos:
log.status(