Select the types of activity you want to include in your feed.
QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
···128128 if error_str.starts_with("error-atproto-identity-resolve-4") {
129129 // DNS resolution - check if it's a "no records" scenario
130130 error_str.contains("NoRecordsFound")
131131+ } else if error_str.starts_with("error-atproto-identity-resolve-6") {
132132+ // HTTP resolution - check if it's a DID format issue
133133+ error_str.contains("expected DID format")
134134+ || error_str.contains("failed to lookup address information")
131135 } else if error_str.starts_with("error-atproto-identity-resolve-5") {
132136 // HTTP resolution - check if it's a hostname lookup failure
133137 error_str.contains("No address associated with hostname")