From 0d0053fa80fa84d30a9b6b711b9a03e1ac02b09b Mon Sep 17 00:00:00 2001 From: Dooley_labs Date: Thu, 20 Jun 2019 05:04:26 -0400 Subject: [PATCH] Patch status in update_presence payload No more Enum, no more `.value` --- disco/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/client.py b/disco/client.py index ee2b091..c480af9 100644 --- a/disco/client.py +++ b/disco/client.py @@ -131,7 +131,7 @@ class Client(LoggingClass): payload = { 'afk': afk, 'since': since, - 'status': status.value.lower(), + 'status': status.lower(), 'game': None, }