From f19a14f6b56006d3c5b17730e37833b313b20822 Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Fri, 28 Jun 2019 13:36:28 -0400 Subject: [PATCH] Fix overwrites not being saved due to enum changes (#145) --- 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