Browse Source
Patch status in update_presence payload
No more Enum, no more `.value`
pull/143/head
Dooley_labs
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/client.py
|
|
@ -131,7 +131,7 @@ class Client(LoggingClass): |
|
|
|
payload = { |
|
|
|
'afk': afk, |
|
|
|
'since': since, |
|
|
|
'status': status.value.lower(), |
|
|
|
'status': status.lower(), |
|
|
|
'game': None, |
|
|
|
} |
|
|
|
|
|
|
|