mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 16:55:16 +00:00
Fix typos and format
This commit is contained in:
parent
d43c4ba739
commit
a8d5e7ba77
|
@ -109,7 +109,7 @@ 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
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue