getsentry / raven-go

Sentry client in Go
https://sentry.io
BSD 3-Clause "New" or "Revised" License
561 stars 147 forks source link

Return empty string if errWrappedWithExtra.err is nil #254

Closed nbasu02 closed 5 years ago

nbasu02 commented 5 years ago

Calling ewx.err.Error() can result in a panic if err is nil. This PR adds a fallback that returns an empty string if this ends up being the case.

kamilogorek commented 5 years ago

Thanks!