diff options
author | Christopher Baines <mail@cbaines.net> | 2020-04-24 10:38:34 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-04-24 10:38:34 +0100 |
commit | c2ba4e714243d538880a8b2a34555d579610f074 (patch) | |
tree | 91dbd2eb9154b8b2ca6227cffb4b5965a7fe5428 /guix-data-service | |
parent | 7a7dedfa1bf0d623d9a7cb8fc509c85caa3b9fdd (diff) | |
download | data-service-c2ba4e714243d538880a8b2a34555d579610f074.tar data-service-c2ba4e714243d538880a8b2a34555d579610f074.tar.gz |
Fix the field names for the JSON representation of a branch
Diffstat (limited to 'guix-data-service')
-rw-r--r-- | guix-data-service/web/repository/controller.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-data-service/web/repository/controller.scm b/guix-data-service/web/repository/controller.scm index 67b37a6..257b16a 100644 --- a/guix-data-service/web/repository/controller.scm +++ b/guix-data-service/web/repository/controller.scm @@ -88,7 +88,7 @@ `((revisions . ,(list->vector (map (match-lambda - ((date commit-hash _ _) + ((commit-hash date _ _) `((date . ,date) (commit-hash . ,commit-hash)))) revisions)))))) |