A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

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

fix: backfill all collections when no collection is selected during backfill creation

Trezy f7439d17 cfb85a4f

+1 -1
+1 -1
src/admin/backfill.rs
··· 271 271 vec![col.clone()] 272 272 } else { 273 273 let sql = adapt_sql( 274 - "SELECT id FROM lexicons WHERE backfill = 1 AND json_extract(lexicon_json, '$.defs.main.type') = 'record'", 274 + "SELECT id FROM lexicons WHERE json_extract(lexicon_json, '$.defs.main.type') = 'record'", 275 275 backend, 276 276 ); 277 277 let rows: Vec<(String,)> = match sqlx::query_as(&sql).fetch_all(&state.db).await {