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
parent
commit
0d0053fa80
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      disco/client.py

2
disco/client.py

@ -131,7 +131,7 @@ class Client(LoggingClass):
payload = {
'afk': afk,
'since': since,
'status': status.value.lower(),
'status': status.lower(),
'game': None,
}

Loading…
Cancel
Save