Fix for #421
Missed giving the argument to actually be able to write the response.
This commit is contained in:
parent
441bd905a5
commit
69b3fabba1
@ -177,7 +177,7 @@ class Handler(BaseHTTPRequestHandler):
|
|||||||
groups = matches.groups()
|
groups = matches.groups()
|
||||||
plugin_name = groups[0]
|
plugin_name = groups[0]
|
||||||
right_path = groups[1] if len(groups) == 2 else None
|
right_path = groups[1] if len(groups) == 2 else None
|
||||||
plugins.one(plugin_name, 'webhook', right_path)
|
plugins.one(plugin_name, 'webhook', self, right_path)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.send_response(404)
|
self.send_response(404)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user