1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-21 08:31:27 -05:00

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