From d40eaa864f372aba6f05a60ca4204f8d0e137280 Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Fri, 28 Jun 2019 03:10:35 -0400 Subject: [PATCH] Fix overwrites not being saved due to enum changes --- disco/types/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/types/channel.py b/disco/types/channel.py index b446663..fdc2489 100644 --- a/disco/types/channel.py +++ b/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