Listen to git commits for a specific repo and run a shell command
5
fork

Configure Feed

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

Fix did:plc

vielle.dev a9449e7d 4fa16e6c

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