mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2025-12-16 14:41:25 +08:00
jami: update incomingCall signal
Change-Id: Ib09c9ef94e62c5093ddbe483c770931edf82357d
This commit is contained in:
2
daemon
2
daemon
Submodule daemon updated: ea74bd3a8f...e2fdad785d
@@ -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>(
|
||||
|
||||
Reference in New Issue
Block a user