See the best posts from any Bluesky account
0
fork

Configure Feed

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

Remove meta-refresh fallback from backfill loading page

The SSE-driven progress bar already navigates the user to their profile
as soon as the backfill row hits a terminal state; the 15s meta-refresh
was reloading the loading page in parallel, which is redundant when SSE
works and unhelpful when it doesn't (it just resets a potentially-
recoverable in-progress backfill).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

-7
-7
resources/views/pages/profile/loading.edge
··· 1 1 @component('components/layout') 2 - @slot('head') 3 - {{-- Fallback refresh for environments where SSE is blocked (proxies, 4 - restrictive firewalls). The SSE-driven progress bar below normally 5 - navigates the user off this page well before 15s elapse. --}} 6 - <meta http-equiv="refresh" content="15" /> 7 - @endslot 8 - 9 2 @slot('title') 10 3 Indexing {{ '@' + handle }} — favs.blue 11 4 @endslot