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

Loading…
Cancel
Save