+1
-1
src/did.rs
+1
-1
src/did.rs
···
89
89
}
90
90
91
91
fn get_plc_doc(plc: &str) -> Result<DidDoc, ()> {
92
-
let res = match reqwest::blocking::get("https://plc.directory/did:plc".to_owned() + plc) {
92
+
let res = match reqwest::blocking::get("https://plc.directory/did:plc:".to_owned() + plc) {
93
93
Ok(val) => val,
94
94
Err(_) => return Err(()),
95
95
};