|
|
|
@ -47,7 +47,8 @@ def handle_inbound(request):
|
|
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
incoming_message.send(receiver, messages=receiver.handle(**kwargs))
|
|
|
|
incoming_message.send(receiver, messages=receiver.handle(**kwargs))
|
|
|
|
except (IndexError, KeyError, ValueError):
|
|
|
|
except (IndexError, KeyError, ValueError) as e:
|
|
|
|
|
|
|
|
sentry_sdk.capture_exception(e)
|
|
|
|
return HttpResponseBadRequest()
|
|
|
|
return HttpResponseBadRequest()
|
|
|
|
except Exception as e:
|
|
|
|
except Exception as e:
|
|
|
|
sentry_sdk.capture_exception(e)
|
|
|
|
sentry_sdk.capture_exception(e)
|
|
|
|
|