jami: update incomingCall signal

Change-Id: Ib09c9ef94e62c5093ddbe483c770931edf82357d
This commit is contained in:
Adrien Béraud
2025-12-05 14:54:58 -05:00
parent 58eb557e68
commit 64e8448409
2 changed files with 7 additions and 6 deletions

2
daemon

Submodule daemon updated: ea74bd3a8f...e2fdad785d

View File

@@ -97,11 +97,12 @@ public:
convertMap(message));
}),
exportable_callback<CallSignal::IncomingCall>(
[this](const std::string& accountId, const std::string& callId, const std::string& from) {
LOG_LIBJAMI_SIGNAL3("incomingCall",
QString(accountId.c_str()),
QString(callId.c_str()),
QString(from.c_str()));
[this](const std::string& accountId,
const std::string& callId,
const std::string& from,
const std::vector<std::map<std::string, std::string>>& mediaList) {
LOG_LIBJAMI_SIGNAL3(
"incomingCall", QString(accountId.c_str()), QString(callId.c_str()), QString(from.c_str()));
Q_EMIT incomingCall(QString(accountId.c_str()), QString(callId.c_str()), QString(from.c_str()));
}),
exportable_callback<CallSignal::MediaChangeRequested>(