Skip to content

Commit

Permalink
Merge pull request #862 from Rewrite0/3.1-dev
Browse files Browse the repository at this point in the history
fix: program start error
  • Loading branch information
Rewrite0 committed Sep 26, 2024
2 parents 18471d0 + c7dc25f commit 02ed66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/module/api/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def restart():
)
async def start():
try:
resp = program.start()
resp = await program.start()
return u_response(resp)
except Exception as e:
logger.debug(e)
Expand Down

0 comments on commit 02ed66e

Please sign in to comment.