From 6522ebf0cad1723a278144b6c5d8557cd47e52d6 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 30 Dec 2023 00:46:59 -0500 Subject: Implement legacy & modern plugin method calls over WS This version builds fine and runs all of the 14 plugins I have installed perfectly, so we're really close to having this done. --- frontend/src/wsrouter.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'frontend/src/wsrouter.ts') diff --git a/frontend/src/wsrouter.ts b/frontend/src/wsrouter.ts index e1d766c3..d3bc45a0 100644 --- a/frontend/src/wsrouter.ts +++ b/frontend/src/wsrouter.ts @@ -1,3 +1,5 @@ +import { sleep } from 'decky-frontend-lib'; + import Logger from './logger'; declare global { @@ -161,6 +163,8 @@ export class WSRouter extends Logger { async onError(error: any) { this.error('WS DISCONNECTED', error); + // TODO queue up lost messages and send them once we connect again + await sleep(5000); await this.connect(); } } -- cgit v1.2.3