Skip to content

Commit

Permalink
Bugfix for intercept filter: Re-panic after PANIC filter
Browse files Browse the repository at this point in the history
  • Loading branch information
robfig committed May 24, 2013
1 parent 2f34d9c commit df88733
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions intercept.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ func (p interceptorFilter) Call(c *Controller, fc FilterChain) {
defer func() {
if err := recover(); err != nil {
invokeInterceptors(PANIC, c)
panic(err)
}
}()

Expand Down

0 comments on commit df88733

Please sign in to comment.