Server tools to backfill, tail, mirror, and verify PLC logs
0
fork

Configure Feed

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

fjall: bsky.social was pds before, special case it

dawn af1ceb98 6dbca756

+4
+4
src/plc_fjall.rs
··· 315 315 enum ServiceEndpoint { 316 316 BlueskyPds(String), 317 317 Other(String), 318 + BlueskySocial, 318 319 } 319 320 320 321 impl ServiceEndpoint { ··· 324 325 .and_then(|h| h.strip_suffix(".host.bsky.network")) 325 326 { 326 327 Self::BlueskyPds(host.to_string()) 328 + } else if s == "https://bsky.social" { 329 + Self::BlueskySocial 327 330 } else { 328 331 Self::Other(s.to_string()) 329 332 } ··· 332 335 fn as_string(&self) -> String { 333 336 match self { 334 337 Self::BlueskyPds(h) => format!("https://{h}.host.bsky.network"), 338 + Self::BlueskySocial => "https://bsky.social".to_string(), 335 339 Self::Other(s) => s.clone(), 336 340 } 337 341 }