summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-08-11 08:51:57 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-08-11 08:51:57 +0200
commit29cb065102046346cc68d144af90bc810bcc8171 (patch)
tree1ffffa8449f55bc65a5d89c80493a66f28249792 /src
parentAdd audio input device selector (diff)
downloadnheko-29cb065102046346cc68d144af90bc810bcc8171.tar.xz
Bump flatpak dependency
Diffstat (limited to 'src')
-rw-r--r--src/CallManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CallManager.cpp b/src/CallManager.cpp
index 45890806..7ecabde0 100644
--- a/src/CallManager.cpp
+++ b/src/CallManager.cpp
@@ -230,9 +230,9 @@ CallManager::handleEvent(const RoomEvent<CallInvite> &callInviteEvent)
                                            return std::tolower(c1) == std::tolower(c2);
                                    }) != sdp.cend();
 
-        nhlog::ui()->debug(std::string("WebRTC: call id: {} - incoming ") +
-                             (isVideo ? "video" : "voice") + " CallInvite from {}",
+        nhlog::ui()->debug("WebRTC: call id: {} - incoming {} CallInvite from {}",
                            callInviteEvent.content.call_id,
+			   (isVideo ? "video" : "voice"),
                            callInviteEvent.sender);
 
         if (callInviteEvent.content.call_id.empty())