From 881270f1495086ef07e36da9f51e44b148332a0f Mon Sep 17 00:00:00 2001 From: N-Pex Date: Wed, 20 Aug 2025 15:15:40 +0200 Subject: [PATCH] Remove debug output --- src/models/attachmentManager.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/models/attachmentManager.ts b/src/models/attachmentManager.ts index fdcf1e0..752f9b5 100644 --- a/src/models/attachmentManager.ts +++ b/src/models/attachmentManager.ts @@ -417,7 +417,6 @@ export const createUploadBatch = (manager: AttachmentManager | null, room: Room const maxSizeUploads = manager?.maxSizeUploads ?? 0; const txnId = utils.randomPass(); - console.error("Created txnId", txnId); const sendingStatus: Ref = ref("initial"); const sendingRootEventId: Ref = ref(undefined); @@ -552,7 +551,6 @@ export const createUploadBatch = (manager: AttachmentManager | null, room: Room }, 0); const onLocalEchoUpdated = (event: KeanuEvent) => { - console.error("Local echo updated", event.getTxnId(), event.uploadBatch); if (!event.uploadBatch && event.getTxnId() === txnId) { event.uploadBatch = { sendingStatus,