From b9a3256e5127d37f32b88b8818e858093c30abcf Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Tue, 17 Mar 2026 18:43:37 +0000 Subject: [PATCH] Don't strip query parameters on in-app navigation (#9948) --- src/lib/strings/url-helpers.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 6088e28065..cd2ae29afe 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -194,12 +194,7 @@ export function convertBskyAppUrlIfNeeded(url: string): string { return startUriToStarterPackUri(urlp.pathname) } - // special-case search links - if (urlp.pathname === '/search') { - return `/search?q=${urlp.searchParams.get('q')}` - } - - return urlp.pathname + return urlp.pathname + urlp.search } catch (e) { console.error('Unexpected error in convertBskyAppUrlIfNeeded()', e) }