diff --git a/app/plugins/utils/update.py b/app/plugins/utils/update.py index 6598427..865a04e 100644 --- a/app/plugins/utils/update.py +++ b/app/plugins/utils/update.py @@ -16,7 +16,7 @@ async def get_commits(repo: Repo) -> str | None: limit: int = 0 for commit in repo.iter_commits("HEAD..origin/main"): commits += f""" -#{commit.count()} {commit.summary} By {commit.author} +#{commit.count()} {commit.message} By {commit.author} """ limit += 1 if limit > 50: