Remove newline from error string

This commit is contained in:
erik 2023-11-15 12:31:16 +01:00 committed by Michael Jerger
parent b869d91dc1
commit d52bb4bf8f

View file

@ -123,7 +123,7 @@ func parseActor(actor string) (ActorData, error) {
}
if !strings.Contains(u.Path, "api/v1/activitypub/user-id") {
return ActorData{}, fmt.Errorf("the Path to the API was invalid: %v\n the full URL is: %v\n", u.Path, actor)
return ActorData{}, fmt.Errorf("the Path to the API was invalid: %v\n the full URL is: %v", u.Path, actor)
}
pathWithUserID := strings.Split(u.Path, "/")