Skip to content

Commit

Permalink
v.11.0.17 - Linkerkennung auf FX angepasst (#542)
Browse files Browse the repository at this point in the history
* detect links on FX properly
  • Loading branch information
rix1337 authored Oct 25, 2021
1 parent a4bf955 commit 5a1c067
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
---

### Changelog:
- **11.0.17** Linkerkennung auf FX angepasst
- **11.0.16** Verhindere, dass
der [FeedCrawler Sponsors Helper](https://github.com/rix1337/RSScrawler/wiki/5.-FeedCrawler-Sponsors-Helper) den
selben Link mehrfach öffnet
Expand Down
3 changes: 2 additions & 1 deletion feedcrawler/sites/shared/internal_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ def fx_get_download_links(self, content, title):
try:
download_links = [content.find("a", text=re.compile(r".*" + title + r".*"))['href']]
except:
download_links = re.findall(r'"(https://.+?filecrypt.cc.+?)"', str(content))
fx = CrawlerConfig('Hostnames').get('fx')
download_links = re.findall(re.compile('"(.+?(?:filecrypt|safe.' + fx + ').+?)"'), str(content))
except:
return False
return download_links
Expand Down
2 changes: 1 addition & 1 deletion feedcrawler/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def get_version():
return "11.0.16"
return "11.0.17"


def create_version_file():
Expand Down

0 comments on commit 5a1c067

Please sign in to comment.