Catch exceptions in modules/title.py
This commit is contained in:
parent
6bcfcb60ea
commit
87fc3cda55
1 changed files with 8 additions and 1 deletions
|
@ -20,9 +20,16 @@ class Module(ModuleManager.BaseModule):
|
||||||
url = re.search(REGEX_URL, url.message).group(0)
|
url = re.search(REGEX_URL, url.message).group(0)
|
||||||
if not url:
|
if not url:
|
||||||
raise utils.EventError("No URL provided/found.")
|
raise utils.EventError("No URL provided/found.")
|
||||||
|
|
||||||
|
soup = None
|
||||||
|
try:
|
||||||
soup = utils.http.get_url(url, soup=True)
|
soup = utils.http.get_url(url, soup=True)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
if not soup:
|
if not soup:
|
||||||
raise utils.EventError("Failed to get URL.")
|
raise utils.EventError("Failed to get URL.")
|
||||||
|
|
||||||
title = soup.title
|
title = soup.title
|
||||||
if title:
|
if title:
|
||||||
title = title.text.replace("\n", " ").replace("\r", ""
|
title = title.text.replace("\n", " ").replace("\r", ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue