another bug fix with directory commits and stuff

This commit is contained in:
2026-02-05 20:24:15 +11:00
parent a488dcb40e
commit 3e8d85e0a4

View File

@@ -112,7 +112,8 @@ class RepoViewScreen(Screen):
commits_response = requests.get( commits_response = requests.get(
self.app.GITEA_HOST + f"api/v1/repos/{self.owner_name}/{self.repo_name}/commits", self.app.GITEA_HOST + f"api/v1/repos/{self.owner_name}/{self.repo_name}/commits",
params={ params={
"limit": 1 "limit": 1,
"path": self.current_dir
} }
) )