Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ucapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1303,12 +1303,14 @@ async def _setup_driver(
)

if isinstance(action, uc.RequestUserInput):
await asyncio.sleep(0.5)
await self.driver_setup_progress(websocket)
await self.request_driver_setup_user_input(
websocket, action.title, action.settings
)
result = True
elif isinstance(action, uc.RequestUserConfirmation):
await asyncio.sleep(0.5)
await self.driver_setup_progress(websocket)
await self.request_driver_setup_user_confirmation(
websocket, action.title, action.header, action.image, action.footer
Expand Down