From 66c8bf57fb939d0409d20f47df48de9d668c87bf Mon Sep 17 00:00:00 2001
From: thedragonsinn <98635854+thedragonsinn@users.noreply.github.com>
Date: Fri, 8 Dec 2023 13:47:43 +0530
Subject: [PATCH] switch to commit.message in updater
---
app/plugins/utils/update.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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: