summary refs log tree commit diff
path: root/src/api
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-04 15:43:01 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-04 15:43:01 +1100
commit7db5c021895e8a2394961bda33871efbaf6005ab (patch)
tree526a103fc8fcd59b763a1476ba154a8750fb0163 /src/api
parentEmbed cache (diff)
downloadserver-7db5c021895e8a2394961bda33871efbaf6005ab.tar.xz
capture exception in sentry for embed processing
Diffstat (limited to 'src/api')
-rw-r--r--src/api/util/handlers/Message.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/util/handlers/Message.ts b/src/api/util/handlers/Message.ts

index e4b74f48..68fd37de 100644 --- a/src/api/util/handlers/Message.ts +++ b/src/api/util/handlers/Message.ts
@@ -27,6 +27,7 @@ import { import { HTTPError } from "lambert-server"; import { In } from "typeorm"; import { EmbedHandlers } from "@fosscord/api"; +import * as Sentry from "@sentry/node"; const allow_empty = false; // TODO: check webhook, application, system author, stickers // TODO: embed gifs/videos/images @@ -219,6 +220,11 @@ export async function postHandleMessage(message: Message) { } } catch (e) { + Sentry.captureException(e, scope => { + scope.clear(); + scope.setContext("request", { url }) + return scope; + }); continue; } }