From 3ba185443e025fc7e649358693029319b411ce71 Mon Sep 17 00:00:00 2001 From: Ricardo Garim Date: Wed, 4 Sep 2024 09:33:49 -0300 Subject: [PATCH] regression: remove unnecessary log on notifyUsersOnMessage (#33207) --- apps/meteor/app/lib/server/lib/notifyUsersOnMessage.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/meteor/app/lib/server/lib/notifyUsersOnMessage.ts b/apps/meteor/app/lib/server/lib/notifyUsersOnMessage.ts index 7d727ab49685..fdb99c83207c 100644 --- a/apps/meteor/app/lib/server/lib/notifyUsersOnMessage.ts +++ b/apps/meteor/app/lib/server/lib/notifyUsersOnMessage.ts @@ -168,8 +168,6 @@ export async function updateThreadUsersSubscriptions(message: IMessage, replies: } export async function notifyUsersOnMessage(message: IMessage, room: IRoom, roomUpdater: Updater): Promise { - console.log('notifyUsersOnMessage function'); - // Skips this callback if the message was edited and increments it if the edit was way in the past (aka imported) if (isEditedMessage(message)) { if (Math.abs(moment(message.editedAt).diff(Date.now())) > 60000) {