Don't start websocket in weserver mode

This commit is contained in:
Matthias 2023-04-10 18:22:07 +02:00
parent 225a740cc9
commit 100de61ab2

View File

@ -873,7 +873,8 @@ export function createBotSubStore(botId: string, botName: string) {
if (
this.websocketStarted === true ||
this.botStatusAvailable === false ||
this.botApiVersion < 2.2
this.botApiVersion < 2.2 ||
this.isWebserverMode === true
) {
return;
}