mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:49:52 +01:00
Use PanicIfInvalid in repository.go
This commit is contained in:
parent
9566e9bc5d
commit
546ce50337
1 changed files with 1 additions and 5 deletions
|
@ -95,11 +95,7 @@ func RepositoryInbox(ctx *context.APIContext) {
|
|||
}
|
||||
|
||||
// Is the ActorData Struct valid?
|
||||
err = actor.Validate()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
actor.PanicIfInvalid()
|
||||
|
||||
log.Info("RepositoryInbox: Actor parsed. %v", actor)
|
||||
|
||||
|
|
Loading…
Reference in a new issue