From 9b9c273b594ed479328844ef7f63e4b36699a058 Mon Sep 17 00:00:00 2001 From: lewis Date: Tue, 6 Jan 2026 17:28:16 +0200 Subject: [PATCH] fix: oauth regression (at least I think it's a regression) --- src/api/server/service_auth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/server/service_auth.rs b/src/api/server/service_auth.rs index 434c624..ee06e81 100644 --- a/src/api/server/service_auth.rs +++ b/src/api/server/service_auth.rs @@ -85,11 +85,11 @@ pub async fn get_service_auth( &token, dpop_proof, "GET", - &format!( + &crate::util::build_full_url(&format!( "/xrpc/com.atproto.server.getServiceAuth?aud={}&lxm={}", params.aud, params.lxm.as_deref().unwrap_or("") - ), + )), ) .await {