mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-22 09:54:24 +01:00
Remove newline from error string
This commit is contained in:
parent
b869d91dc1
commit
d52bb4bf8f
|
@ -123,7 +123,7 @@ func parseActor(actor string) (ActorData, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.Contains(u.Path, "api/v1/activitypub/user-id") {
|
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, "/")
|
pathWithUserID := strings.Split(u.Path, "/")
|
||||||
|
|
Loading…
Reference in a new issue