Browse Source

Fix Webhook.guild raising an AttributeError.

Fixes #1148
pull/1154/head
Rapptz 7 years ago
parent
commit
eb5defed00
  1. 2
      discord/webhook.py

2
discord/webhook.py

@ -429,7 +429,7 @@ class Webhook:
If this is a partial webhook, then this will always return ``None``.
"""
return self._state and self._state.get_guild(self.guild_id)
return self._state and self._state._get_guild(self.guild_id)
@property
def channel(self):

Loading…
Cancel
Save