-
-
Notifications
You must be signed in to change notification settings - Fork 482
Open
Milestone
Description
Line: 183
pycord//discord/interactions.py
Lines 180 to 190 in 6ab3292
self.user: User | Member | None = None | |
self._permissions: int = 0 | |
# TODO: there's a potential data loss here | |
if self.guild_id: | |
guild = ( | |
self.guild | |
or self._state._get_guild(self.guild_id) | |
or Object(id=self.guild_id) | |
) | |
try: |