From f0c8906cd19479447ff5d0c1044ecbad6ab845d6 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sun, 18 May 2025 19:21:17 +0200 Subject: =?UTF-8?q?Good=20progress=20today=20=F0=9F=92=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/handlers.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/handlers.ml') diff --git a/lib/handlers.ml b/lib/handlers.ml index 321c693..17b9eab 100644 --- a/lib/handlers.ml +++ b/lib/handlers.ml @@ -12,7 +12,7 @@ module Repo = struct let repo_path req = Dream.param req "repo_name" let summary req = - let branches = Git_helpers.Branch.all_branches (repo_path req) in + let* branches = Git_helpers.Branch.all_branches (repo_path req) in let* commits = Git_helpers.Commit.recent_commits (repo_path req) 10 in let authors = [ "John Pork"; "Sebastian Jellybean" ] in Views.Repo.summary (repo_path req) branches commits authors -- cgit v1.2.3