From 80cb27c4221bf71c96cf4dd231a56347c9902457 Mon Sep 17 00:00:00 2001 From: PatrykBuniX Date: Mon, 15 Jan 2024 09:51:32 +0100 Subject: [PATCH] test: replace console error with warning to fix automation scenario --- src/script/conversation/ConversationRepository.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/conversation/ConversationRepository.ts b/src/script/conversation/ConversationRepository.ts index d12a11ed4a2..af270b65a6e 100644 --- a/src/script/conversation/ConversationRepository.ts +++ b/src/script/conversation/ConversationRepository.ts @@ -1735,7 +1735,7 @@ export class ConversationRepository { const otherUserId = this.getUserIdOf1to1Conversation(conversation); if (!otherUserId) { - this.logger.error(`Could not find other user id in 1:1 conversation ${conversation.id}`); + this.logger.warn(`Could not find other user id in 1:1 conversation ${conversation.id}`); return conversation; }