From 2ba7a097965d2c0525bda647b4e2ef95a8debb7f Mon Sep 17 00:00:00 2001 From: NotNite Date: Fri, 24 Sep 2021 21:54:17 -0400 Subject: [PATCH] gateway.schemas: add v identify field for eris --- litecord/gateway/schemas.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litecord/gateway/schemas.py b/litecord/gateway/schemas.py index 5cbdede..c1818e5 100644 --- a/litecord/gateway/schemas.py +++ b/litecord/gateway/schemas.py @@ -123,6 +123,8 @@ IDENTIFY_SCHEMA = { }, }, "guild_subscriptions": {"type": "boolean", "required": False}, + # this is just to make bot libraries happy + "v": {"type": "number", "required": False}, }, } },