this repo has no description

fix getting service endpoint

Changed files
+1 -1
api
server
+1 -1
api/server/blobs.go
··· 93 return "", fmt.Errorf("failed to fetch DID document: %w", err) 94 } 95 96 - serviceEndpoint := doc.GetServiceEndpoint("#atproto_pds") 97 if serviceEndpoint == "" { 98 return "", fmt.Errorf("no PDS endpoing found in DID document") 99 }
··· 93 return "", fmt.Errorf("failed to fetch DID document: %w", err) 94 } 95 96 + serviceEndpoint := doc.GetServiceEndpoint("atproto_pds") 97 if serviceEndpoint == "" { 98 return "", fmt.Errorf("no PDS endpoing found in DID document") 99 }