Browse Source

Use actual OS for IDENTIFYs. (#154)

* Use actual OS.

* This should work on linux aswell.

* Move to the system namespace.

Co-Authored-By: Andrei Zbikowski <[email protected]>
pull/158/head
tristanatfarkas 6 years ago
committed by Andrei Zbikowski
parent
commit
7a1c1a193d
  1. 3
      disco/gateway/client.py

3
disco/gateway/client.py

@ -3,6 +3,7 @@ import zlib
import six import six
import ssl import ssl
import platform
from websocket import ABNF from websocket import ABNF
from disco.gateway.packets import OPCode, RECV, SEND from disco.gateway.packets import OPCode, RECV, SEND
@ -219,7 +220,7 @@ class GatewayClient(LoggingClass):
int(self.client.config.shard_count), int(self.client.config.shard_count),
], ],
'properties': { 'properties': {
'$os': 'linux', '$os': platform.system(),
'$browser': 'disco', '$browser': 'disco',
'$device': 'disco', '$device': 'disco',
'$referrer': '', '$referrer': '',

Loading…
Cancel
Save