From e9f5e7d6b4e756e323871c68aceee7918f65f05f Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:52:42 +1100 Subject: [PATCH] Fix handy not working correctly (#6425) --- ui/v2.5/src/hooks/Interactive/interactive.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/v2.5/src/hooks/Interactive/interactive.ts b/ui/v2.5/src/hooks/Interactive/interactive.ts index 4ca59b25b..2b1227243 100644 --- a/ui/v2.5/src/hooks/Interactive/interactive.ts +++ b/ui/v2.5/src/hooks/Interactive/interactive.ts @@ -178,6 +178,10 @@ export class Interactive { this._connected = await this._handy .setHsspSetup(funscriptUrl) .then((result) => result === HsspSetupResult.downloaded); + + // for some reason we need to call getStatus after setup to ensure proper state + // see https://github.com/defucilis/thehandy/issues/3 + await this._handy.getStatus(); } async sync() {