audio streaming app plyr.fm
38
fork

Configure Feed

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

docs: add auth check optimization to status (#783)

documents PRs #781-782 which eliminated redundant /auth/me calls
on every navigation for unauthenticated users.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.5
and committed by
GitHub
4172014e 1cb1787e

+9 -1
+9 -1
STATUS.md
··· 47 47 48 48 ### January 2026 49 49 50 + #### auth check optimization (PRs #781-782, Jan 23) 51 + 52 + **eliminated redundant /auth/me calls** - previously, every navigation triggered an auth check via the layout load function. for unauthenticated users, this meant a 401 on every page click (117 errors in 24 hours observed via Logfire). 53 + 54 + **fix**: auth singleton now tracks initialization state. `+layout.svelte` checks auth once on mount instead of every navigation. follow-up PR fixed library/liked pages that were broken by the layout simplification (they were using `await parent()` to get `isAuthenticated` which was no longer provided). 55 + 56 + --- 57 + 50 58 #### listen receipts (PR #773, Jan 22) 51 59 52 60 **share links now track who clicked and played** - when you share a track, you get a URL with a `?ref=` code that records visitors and listeners: ··· 429 437 430 438 --- 431 439 432 - this is a living document. last updated 2026-01-22. 440 + this is a living document. last updated 2026-01-23.