From 86d23fddb14d65ee06236f8a72bc51c1ed166908 Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 15 Aug 2024 04:50:10 +0200 Subject: [PATCH] fix(web): must be absolute url --- web/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app.rs b/web/src/app.rs index 35cf6a1..4c371f7 100644 --- a/web/src/app.rs +++ b/web/src/app.rs @@ -93,7 +93,7 @@ pub fn App() -> impl IntoView { let (notifications, set_notifications) = create_signal(0); let fetch_notifications = move || spawn_local(async move { let actor_id = userid.get().unwrap_or_default(); - let notif_url = format!("/actors/{actor_id}/notifications"); + let notif_url = format!("{URL_BASE}/actors/{actor_id}/notifications"); match Http::fetch::(¬if_url, auth).await { Err(e) => tracing::error!("failed fetching notifications: {e}"), Ok(doc) => if let Ok(count) = doc.total_items() {