From e9317e9ee443fe3739da192f191cb9ddc7502362 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 12 Apr 2017 14:54:34 -0700 Subject: [PATCH] What am I even smoking --- disco/types/webhook.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/disco/types/webhook.py b/disco/types/webhook.py index aba55a5..b8930c7 100644 --- a/disco/types/webhook.py +++ b/disco/types/webhook.py @@ -18,14 +18,17 @@ class Webhook(SlottedModel): token = Field(str) @classmethod - def from_url(cls, url): + def execute_url(cls, url, **kwargs): from disco.api.client import APIClient - results = WEBHOOK_URL_RE.findall(url, client=APIClient(None)) + results = WEBHOOK_URL_RE.findall(url) if len(results) != 1: return Exception('Invalid Webhook URL') - return cls(id=results[0][0], token=results[0][1]) + return cls(id=results[0][0], token=results[0][1]).execute( + client=APIClient(None), + **kwargs + ) @cached_property def guild(self):