url_sanitise youtube urls (cut off ")"/">")
This commit is contained in:
parent
24a510d1ca
commit
219382cc3c
1 changed files with 2 additions and 1 deletions
|
@ -158,7 +158,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
@utils.kwarg("pattern", REGEX_YOUTUBE)
|
@utils.kwarg("pattern", REGEX_YOUTUBE)
|
||||||
def channel_message(self, event):
|
def channel_message(self, event):
|
||||||
if event["target"].get_setting("auto-youtube", False):
|
if event["target"].get_setting("auto-youtube", False):
|
||||||
out = self._from_url(event["match"].group(0))
|
url = utils.http.url_sanitise(event["match"].group(0))
|
||||||
|
out = self._from_url(url)
|
||||||
if not out == None:
|
if not out == None:
|
||||||
event.eat()
|
event.eat()
|
||||||
event["stdout"].write(out)
|
event["stdout"].write(out)
|
||||||
|
|
Loading…
Reference in a new issue