Skip to content

Commit

Permalink
fix: delay setup flow screen
Browse files Browse the repository at this point in the history
Delay the first setup screen as a workaround for the web-configurator.
Otherwise, it's not always displayed and it runs into a timeout.
  • Loading branch information
zehnm committed Dec 23, 2024
1 parent 1f3cc81 commit 9b70fb2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions intg-denonavr/setup_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ async def handle_driver_setup(_msg: DriverSetupRequest) -> RequestUserInput | Se

_LOG.debug("Starting driver setup")
_setup_step = SetupSteps.CONFIGURATION_MODE

await asyncio.sleep(1)

# pylint: disable=line-too-long
return RequestUserInput(
{"en": "Setup mode", "de": "Setup Modus"},
Expand Down

0 comments on commit 9b70fb2

Please sign in to comment.