From 7a1c1a193d3b57e2c2a27624d9fe679959cd6000 Mon Sep 17 00:00:00 2001 From: tristanatfarkas <15787558+trilleplay@users.noreply.github.com> Date: Mon, 7 Oct 2019 21:05:33 +0200 Subject: [PATCH] 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 --- disco/gateway/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/disco/gateway/client.py b/disco/gateway/client.py index a951145..e997a98 100644 --- a/disco/gateway/client.py +++ b/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': '',