summary refs log tree commit diff
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
parentAdd audio input device selector (diff)
downloadnheko-29cb065102046346cc68d144af90bc810bcc8171.tar.xz
Bump flatpak dependency
-rw-r--r--io.github.NhekoReborn.Nheko.json6
-rw-r--r--src/CallManager.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/io.github.NhekoReborn.Nheko.json b/io.github.NhekoReborn.Nheko.json

index 8e4dbbe6..9bebdb61 100644 --- a/io.github.NhekoReborn.Nheko.json +++ b/io.github.NhekoReborn.Nheko.json
@@ -146,9 +146,9 @@ "name": "mtxclient", "sources": [ { - "sha256": "6334bb71821a0fde54fe24f02ad393cdb6836633557ffdd239b29c5d5108daaf", - "type": "archive", - "url": "https://github.com/Nheko-Reborn/mtxclient/archive/eddd95a896fad0c51fc800741d82bbc43fc6d41e.tar.gz" + "commit": "744018c86a8094acbda9821d6d7b5a890d4aac47", + "type": "git", + "url": "https://github.com/Nheko-Reborn/mtxclient.git" } ] }, 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())