From 96fc2d54c5bae81cab18dc0346026e9fb3279f0c Mon Sep 17 00:00:00 2001 From: Stachelbeere1248 Date: Tue, 18 Feb 2025 19:42:53 +0100 Subject: [PATCH] fix url --- src/data/helpstart_api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/helpstart_api.rs b/src/data/helpstart_api.rs index f4c458c..5ada940 100644 --- a/src/data/helpstart_api.rs +++ b/src/data/helpstart_api.rs @@ -37,7 +37,7 @@ pub(crate) enum ListType { } pub(crate) async fn fetch_all(client: &Client) -> Result { - let url = "localhost:6969/list"; + let url = "https://localhost:6969/list"; let response: Response = client .get(url) .send()