this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Don't strip query parameters on in-app navigation (#9948)

authored by

surfdude29 and committed by
GitHub
b9a3256e 1386a559

+1 -6
+1 -6
src/lib/strings/url-helpers.ts
··· 194 194 return startUriToStarterPackUri(urlp.pathname) 195 195 } 196 196 197 - // special-case search links 198 - if (urlp.pathname === '/search') { 199 - return `/search?q=${urlp.searchParams.get('q')}` 200 - } 201 - 202 - return urlp.pathname 197 + return urlp.pathname + urlp.search 203 198 } catch (e) { 204 199 console.error('Unexpected error in convertBskyAppUrlIfNeeded()', e) 205 200 }