Browse Source
Fix overwrites not being saved due to enum changes
pull/145/head
Justin
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
disco/types/channel.py
|
|
@ -83,7 +83,7 @@ class PermissionOverwrite(ChannelSubType): |
|
|
|
self.id, |
|
|
|
self.allow.value or 0, |
|
|
|
self.deny.value or 0, |
|
|
|
self.type.name, |
|
|
|
self.type, |
|
|
|
**kwargs) |
|
|
|
return self |
|
|
|
|
|
|
|