fix: 修复重启程序后设置的语言模型选择偏好重置的问题

This commit is contained in:
Soulter
2023-04-05 20:26:35 +08:00
parent 762f5ea30f
commit 0a1df90a83
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Command:
# 得到最新的5条commit列表, 包含commit信息
origin = repo.remotes.origin
origin.fetch()
commits = list(repo.iter_commits('master', max_count=5))
commits = list(repo.iter_commits('master', max_count=3))
commits_log = ''
index = 1
for commit in commits: