diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-02 21:01:32 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-10-02 21:01:32 +0200 |
commit | 63d9fa12a205b5c770e75c09be1a0a9656eb1ea1 (patch) | |
tree | 1dbf8cd99c00cd59f02cbcc7474ddbf03ef1f8f3 /module/Api.py | |
parent | GUI_progressbar_fix.patch by royflo (diff) | |
download | pyload-63d9fa12a205b5c770e75c09be1a0a9656eb1ea1.tar.xz |
fixed urlmatcher, clear links on start option
Diffstat (limited to 'module/Api.py')
-rw-r--r-- | module/Api.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/Api.py b/module/Api.py index 66ba855f1..3480f05b8 100644 --- a/module/Api.py +++ b/module/Api.py @@ -45,7 +45,7 @@ def permission(bits): return _Dec -urlmatcher = re.compile(r"((https?|ftps?|xdcc|sftp):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+-=\\\.&]*)", re.IGNORECASE) +urlmatcher = re.compile(r"((https?|ftps?|xdcc|sftp):((//)|(\\\\))+[\w\d:#@%/;$()~_?\+\-=\\\.&]*)", re.IGNORECASE) class PERMS: ALL = 0 # requires no permission, but login @@ -338,7 +338,8 @@ class Api(Iface): page = getURL(url) urls += [x[0] for x in urlmatcher.findall(page)] - return self.checkURLs(urls) + # remove duplicates + return self.checkURLs(set(urls)) @permission(PERMS.ADD) |