A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

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

fix: add missing ending slash in oauth redirect path

+1 -1
+1 -1
src/components/output/raw/atproto/oauth.js
··· 47 47 const url = new URL(location.href); 48 48 const params = url.searchParams.entries(); 49 49 50 - redirect_uri = location.origin + "/oauth/redirect?" + QS.stringify({ 50 + redirect_uri = location.origin + "/oauth/redirect/?" + QS.stringify({ 51 51 ...params, 52 52 redirect_path: location.pathname, 53 53 variant: url.pathname.replace(/(^\/+|\/+$)/g, "").split("/")[0],