diff options
Diffstat (limited to 'pyload/plugins/hoster/FilepostCom.py')
-rw-r--r-- | pyload/plugins/hoster/FilepostCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/FilepostCom.py b/pyload/plugins/hoster/FilepostCom.py index 191da7849..48b0ce311 100644 --- a/pyload/plugins/hoster/FilepostCom.py +++ b/pyload/plugins/hoster/FilepostCom.py @@ -46,7 +46,7 @@ class FilepostCom(SimpleHoster): def handleFree(self): # Find token and captcha key - file_id = re.search(self.__pattern__, self.pyfile.url).group(1) + file_id = re.match(self.__pattern__, self.pyfile.url).group(1) found = re.search(self.FLP_TOKEN_PATTERN, self.html) if not found: |