Fix returned value from backup/info WS command (#67439)

This commit is contained in:
Joakim Sørensen 2022-03-01 21:37:51 +01:00 committed by GitHub
parent 94130a6060
commit e58ce7ab6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 5 deletions

View file

@ -30,7 +30,7 @@ async def handle_info(
connection.send_result(
msg["id"],
{
"backups": list(backups),
"backups": list(backups.values()),
"backing_up": manager.backing_up,
},
)