diff options
Diffstat (limited to 'module/plugins/hoster/HotfileCom.py')
-rw-r--r-- | module/plugins/hoster/HotfileCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py index a9853100c..748571840 100644 --- a/module/plugins/hoster/HotfileCom.py +++ b/module/plugins/hoster/HotfileCom.py @@ -60,7 +60,7 @@ class HotfileCom(Plugin): return file_url def get_file_name(self): - file_name = re.search('Downloading\s<b>(.*?)</b>', self.html[0]).group(1) + file_name = re.search(':</strong> (.+) <span>|</span>', self.html[0]).group(1) return file_name def file_exists(self): |