Skip to content

Commit

Permalink
[fix]:fix install repo is id bug (#460)
Browse files Browse the repository at this point in the history
* fix(install): stringify ownerid

* fix(install): stringify install repo id
  • Loading branch information
ch-liuzhide authored Nov 12, 2024
1 parent c69b1b6 commit 6e3c732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/github_app/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def github_app_callback(code: str, installation_id: str, setup_action: str):
repository_config = RepositoryConfig(
owner_id=str(repo["owner"]["id"]),
repo_name=repo["full_name"],
repo_id=repo["id"],
repo_id=str(repo["id"]),
robot_id="",
created_at=int(time.time()),
)
Expand Down

0 comments on commit 6e3c732

Please sign in to comment.