mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
fix little error in previous commit
fix commit 8a708851da
inverted comparaison.
Change-Id: Id7ed10fdd50b82537acc317fb17e0a7e8aebc293
Reviewed-by: Philippe Gorley <philippe.gorley@savoirfairelinux.com>
This commit is contained in:

committed by
Philippe Gorley

parent
8a708851da
commit
25f7464d36
@ -294,7 +294,7 @@ transaction_request_cb(pjsip_rx_data *rdata)
|
||||
// Append PJSIP transport to the broker's SipTransport list
|
||||
auto transport = link->sipTransportBroker->addTransport(rdata->tp_info.transport);
|
||||
if (!transport) {
|
||||
if (::strcmp(account->getAccountType(), SIPAccount::ACCOUNT_TYPE)) {
|
||||
if (not ::strcmp(account->getAccountType(), SIPAccount::ACCOUNT_TYPE)) {
|
||||
RING_WARN("Using transport from account.");
|
||||
transport = std::static_pointer_cast<SIPAccount>(account)->getTransport();
|
||||
}
|
||||
|
Reference in New Issue
Block a user