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

Fix did:plc

vielle.dev a9449e7d 4fa16e6c

verified
Changed files
+1 -1
src
+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 };