From 71143368634ce032bff09c96d977d9fc6231ab7a Mon Sep 17 00:00:00 2001 From: w6vvn Date: Mon, 8 Sep 2025 13:42:29 -0700 Subject: [PATCH] correctly convert url to string when raising unsupported scheme error --- client.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client.rkt b/client.rkt index 7c6af74..237ed06 100644 --- a/client.rkt +++ b/client.rkt @@ -166,7 +166,8 @@ 'get-document (string-append "unsupported scheme: ~a~n" " url: ~a~n") - (url-scheme destination) destination)) + (url-scheme destination) + (url->string destination))) (define-values (status meta body-port) (net:request destination))