Browse Source

Fix overwrites not being saved due to enum changes (#145)

pull/146/head
Justin 6 years ago
committed by Andrei Zbikowski
parent
commit
f19a14f6b5
  1. 2
      disco/types/channel.py

2
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

Loading…
Cancel
Save