mirror of
https://github.com/stashapp/stash.git
synced 2026-02-13 02:42:37 +01:00
Fix handy not working correctly (#6425)
This commit is contained in:
parent
af11189718
commit
e9f5e7d6b4
1 changed files with 4 additions and 0 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue