From edb21317a6f1fd48da91ea836a306034c2f10a3f Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 14 Nov 2019 20:51:29 +0000 Subject: Remove a couple of peek calls that snuck in --- guix-data-service/web/compare/html.scm | 2 +- guix-data-service/web/view/html.scm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guix-data-service/web/compare/html.scm b/guix-data-service/web/compare/html.scm index 86be5a9..afb103d 100644 --- a/guix-data-service/web/compare/html.scm +++ b/guix-data-service/web/compare/html.scm @@ -638,7 +638,7 @@ (assq-ref query-parameters 'base_commit)) (define target-commit - (peek (assq-ref query-parameters 'target_commit))) + (assq-ref query-parameters 'target_commit)) (layout #:body diff --git a/guix-data-service/web/view/html.scm b/guix-data-service/web/view/html.scm index 5f14722..b403890 100644 --- a/guix-data-service/web/view/html.scm +++ b/guix-data-service/web/view/html.scm @@ -629,7 +629,7 @@ (a (@ (href ,path)) ,(display-store-item path)) "\"," - ,(string-append (if (peek recursive?) "\"r:" "\"") + ,(string-append (if recursive? "\"r:" "\"") hash-algorithm) "\"" "," -- cgit v1.2.3