don't
5
fork

Configure Feed

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

fix(atproto): prevent creation of invalid OwnedDid's

Signed-off-by: tjh <x@tjh.dev>

tjh 2f8e45ba e83de231

+1 -1
+1 -1
crates/atproto/src/did.rs
··· 290 290 } 291 291 292 292 impl OwnedDid { 293 - pub fn new(did: impl Into<SmallDid>) -> Self { 293 + fn new(did: impl Into<SmallDid>) -> Self { 294 294 let inner = did.into(); 295 295 Self { inner } 296 296 }