audio streaming app plyr.fm
38
fork

Configure Feed

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

hotfix: revert to /portal - library breaks login (#633)

authored by

nate nowack and committed by
GitHub
00634e9a 9166e4dd

+2 -2
+2 -2
backend/src/backend/api/auth.py
··· 166 166 # schedule ATProto sync (via docket if enabled, else asyncio) 167 167 await schedule_atproto_sync(session_id, did) 168 168 169 - # redirect to profile setup if needed, otherwise to library 170 - redirect_path = "/library" if has_profile else "/profile/setup" 169 + # redirect to profile setup if needed, otherwise to portal 170 + redirect_path = "/portal" if has_profile else "/profile/setup" 171 171 172 172 return RedirectResponse( 173 173 url=f"{settings.frontend.url}{redirect_path}?exchange_token={exchange_token}",