Fix typos and format

This commit is contained in:
erik 2023-11-29 15:45:04 +01:00 committed by Michael Jerger
parent d43c4ba739
commit a8d5e7ba77

View file

@ -107,9 +107,9 @@ func RepositoryInbox(ctx *context.APIContext) {
}
// get_person_by_rest
bytes := []byte{0} // no body needed for getting user actor
target := opt.Actor.GetID().String() // target is the person actor that originally performed the star activity
response, err := client.Get(bytes, target) // ToDo: Close body, maybe use in extra function
bytes := []byte{0} // no body needed for getting user actor
target := opt.Actor.GetID().String() // target is the person actor that originally performed the star activity
response, err := client.Get(bytes, target)
if err != nil {
panic(err)
}
@ -119,7 +119,7 @@ func RepositoryInbox(ctx *context.APIContext) {
panic(err)
}
// parse resonse
// parse response
person, err := forgefed.ParsePersonJson(body)
if err != nil {
panic(err)