mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Fix crawling English opencast
This commit is contained in:
parent
c0d6d8b229
commit
55a2de6b88
2 changed files with 2 additions and 1 deletions
|
|
@ -30,6 +30,7 @@ ambiguous situations.
|
|||
|
||||
### Fixed
|
||||
- IPD crawler unnecessarily appending trailing slashes
|
||||
- Crawling opencast when ILIAS is set to English
|
||||
|
||||
## 3.4.2 - 2022-10-26
|
||||
|
||||
|
|
|
|||
|
|
@ -366,7 +366,7 @@ class IliasPage:
|
|||
"""
|
||||
# Video start links are marked with an "Abspielen" link
|
||||
video_links: List[Tag] = self._soup.findAll(
|
||||
name="a", text=re.compile(r"\s*Abspielen\s*")
|
||||
name="a", text=re.compile(r"\s*(Abspielen|Play)\s*")
|
||||
)
|
||||
|
||||
results: List[IliasPageElement] = []
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue