diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-08-11 08:51:57 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-08-11 08:51:57 +0200 |
commit | 29cb065102046346cc68d144af90bc810bcc8171 (patch) | |
tree | 1ffffa8449f55bc65a5d89c80493a66f28249792 /src | |
parent | Add audio input device selector (diff) | |
download | nheko-29cb065102046346cc68d144af90bc810bcc8171.tar.xz |
Bump flatpak dependency
Diffstat (limited to 'src')
-rw-r--r-- | src/CallManager.cpp | 4 |
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()) |