tangled
alpha
login
or
join now
vielle.dev
/
tangled-on-commit
5
fork
atom
Listen to git commits for a specific repo and run a shell command
5
fork
atom
overview
issues
pulls
pipelines
Fix did:plc
vielle.dev
7 months ago
a9449e7d
4fa16e6c
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+1
-1
1 changed file
expand all
collapse all
unified
split
src
did.rs
+1
-1
src/did.rs
reviewed
···
89
89
}
90
90
91
91
fn get_plc_doc(plc: &str) -> Result<DidDoc, ()> {
92
92
-
let res = match reqwest::blocking::get("https://plc.directory/did:plc".to_owned() + plc) {
92
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
};