Fix bug when checking if token is in use and added the token to the active clients when selected
This commit is contained in:
@@ -6,9 +6,9 @@ class ActiveClient:
|
||||
The active client model in memory for quicker access
|
||||
"""
|
||||
websocket = None
|
||||
active_token: str = None
|
||||
active_token: DiscordId = None
|
||||
|
||||
def __init__(self, websocket= None, active_token:str=None):
|
||||
def __init__(self, websocket= None, active_token:DiscordId=None):
|
||||
self.active_token = active_token
|
||||
self.websocket = websocket
|
||||
|
||||
|
||||
Reference in New Issue
Block a user