mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
Don't use redundant implementation of person
This commit is contained in:
parent
b00b5fa7af
commit
22ba03ae4d
1 changed files with 2 additions and 1 deletions
|
@ -120,7 +120,8 @@ func RepositoryInbox(ctx *context.APIContext) {
|
|||
}
|
||||
|
||||
// parse response
|
||||
person, err := forgefed.ParsePersonJson(body)
|
||||
person := ap.Person{}
|
||||
err = person.UnmarshalJSON(body)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue