From f337228785a1bba275c70d7919da42b7ed924fe1 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Mon, 30 Oct 2017 09:25:48 +0100 Subject: [PATCH] fix(Core): fix log text --- src/core/core-chat-room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core-chat-room.cpp b/src/core/core-chat-room.cpp index 42104a2a5..b39c8703b 100644 --- a/src/core/core-chat-room.cpp +++ b/src/core/core-chat-room.cpp @@ -114,7 +114,7 @@ shared_ptr Core::findChatRoom (const Address &peerAddress) const { // TODO: Remove me, temp workaround. cleanedAddress.setDomain(Address(linphone_core_get_conference_factory_uri(d->cCore)).getDomain()); - lWarning() << "We don't found the chat room with address " << peerAddress.asString() << + lWarning() << "We don't find the chat room with address " << peerAddress.asString() << " as a temporary workaround, searching with " << cleanedAddress.asString(); it = d->chatRoomsByUri.find(cleanedAddress.asStringUriOnly());