Improve error from Webhook.from_url when passing client

This commit is contained in:
Soheab
2026-07-08 16:08:43 -04:00
committed by GitHub
parent bd2231bc99
commit f7868eaf23
+3
View File
@@ -1322,6 +1322,9 @@ class Webhook(BaseWebhook):
state = None state = None
if client is not MISSING: if client is not MISSING:
if client._ready is MISSING:
raise ValueError('Client must be logged in to use from_url with a client.')
state = client._connection state = client._connection
if session is MISSING: if session is MISSING:
session = client.http._HTTPClient__session # type: ignore session = client.http._HTTPClient__session # type: ignore