Skip to content

Commit

Permalink
[KatfileCom] fix #4447
Browse files Browse the repository at this point in the history
  • Loading branch information
GammaC0de committed Apr 12, 2024
1 parent 119c1f8 commit cf528f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyload/plugins/downloaders/KatfileCom.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class KatfileCom(XFSDownloader):
__name__ = "KatfileCom"
__type__ = "downloader"
__version__ = "0.03"
__version__ = "0.04"
__status__ = "testing"

__pattern__ = r"https?://(?:www\.)?katfile\.com/\w+"
Expand All @@ -25,6 +25,7 @@ class KatfileCom(XFSDownloader):
NAME_PATTERN = r'name="fname" value="(?P<N>.+?)"'
SIZE_PATTERN = r'<span id="fsize" .+?>(?P<S>[\d.,]+) (?P<U>[\w^_]+)<'

OFFLINE_PATTERN = r"File has been removed"
WAIT_PATTERN = r"(?:var estimated_time = |Delay between free downloads must be not less than )([\w ]+?)[.;]"
LINK_PATTERN = r'<a href="([^"]+)" id="dlink"'

Expand Down

0 comments on commit cf528f8

Please sign in to comment.