Test for empty string

This commit is contained in:
erik 2023-12-06 16:14:39 +01:00 committed by Michael Jerger
parent d27cac5bae
commit 68cd621053

View file

@ -127,6 +127,10 @@ func removeEmptyStrings(ls []string) []string {
}
func ParseActorID(unvalidatedIRI, source string) (ActorID, error) {
if unvalidatedIRI == "" {
return ActorID{}, fmt.Errorf("the given IRI was empty")
}
u, err := url.Parse(unvalidatedIRI)
// check if userID IRI is well formed url