summary refs log tree commit diff
path: root/src/gateway
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
commit63c0fbf62c5f7c9ffba4c366da60b71f047917b0 (patch)
treed1523ca4fa9f346191d60a15accd2d3ececa80eb /src/gateway
parentEmbed cache (diff)
downloadserver-63c0fbf62c5f7c9ffba4c366da60b71f047917b0.tar.xz
capture exception in sentry for embed processing
Diffstat (limited to 'src/gateway')
-rw-r--r--src/gateway/events/Message.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gateway/events/Message.ts b/src/gateway/events/Message.ts
index 07a4e2a9..9fafae1e 100644
--- a/src/gateway/events/Message.ts
+++ b/src/gateway/events/Message.ts
@@ -53,7 +53,7 @@ export async function Message(this: WebSocket, buffer: WS.Data) {
 
 	try {
 		var ret = await OPCodeHandler.call(this, data);
-		// transaction.finish();
+		transaction.finish();
 		return ret;
 	} catch (error) {
 		Sentry.captureException(error);