diff options
Diffstat (limited to 'module/plugins/hoster/ShareCx.py')
-rw-r--r-- | module/plugins/hoster/ShareCx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/ShareCx.py b/module/plugins/hoster/ShareCx.py index 2615c6e11..38c557193 100644 --- a/module/plugins/hoster/ShareCx.py +++ b/module/plugins/hoster/ShareCx.py @@ -138,7 +138,7 @@ class ShareCx(Hoster): if self.html is None:
self.download_html()
- name = re.search(r'alt="Download" /></span>(.*?)</h3>', self.html).group(1)
+ name = re.search(r'<title>Download: (.*?)</title>', self.html).group(1)
return name
def file_exists(self):
|