From 4034cb69f57a2087d4a98c80b8ce415adc772198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Wed, 5 Jun 2024 17:33:20 +0200 Subject: [PATCH] frontend: Remove stray bonsai reference (#777) We still use Bonsai, but we proxy it now so the message is misleading since the browser doesn't actually try to access bonsai. --- frontend/src/Search.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Search.elm b/frontend/src/Search.elm index 204b3d8..2fa9112 100644 --- a/frontend/src/Search.elm +++ b/frontend/src/Search.elm @@ -845,7 +845,7 @@ viewResult nixosChannels outMsg toRoute categoryName model viewSuccess viewBucke ( "Timeout!", "Request to the server timeout." ) Http.NetworkError -> - ( "Network Error!", "A network request bonsaisearch.net domain failed. This is either due to a content blocker or a networking issue." ) + ( "Network Error!", "A network request to the search backend failed. This is either due to a content blocker or a networking issue." ) Http.BadStatus code -> ( "Bad Status", "Server returned " ++ String.fromInt code )