mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Test for empty string
This commit is contained in:
parent
d27cac5bae
commit
68cd621053
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue