Skip to content

Commit

Permalink
Missing status="ok" in updatecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
arenekosreal committed Sep 22, 2024
1 parent 09bea01 commit bfda779
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/crx_repo/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ async def handler(request: web.Request) -> web.Response:
update_check = Element("updatecheck")
update_check.attrib["codebase"] = absolute_base + extension_path
update_check.attrib["version"] = info.version
update_check.attrib["status"] = "ok"
update_check.attrib["size"] = str(info.size)
update_check.attrib["hash_sha256"] = info.hash_sha256
app.append(update_check)
Expand Down

0 comments on commit bfda779

Please sign in to comment.