mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 01:39:19 +00:00
fix(src/components/sip-addresses/SipAddressesModel): log correctly sip addresses at startup
This commit is contained in:
parent
63247e0101
commit
78aa601895
1 changed files with 3 additions and 1 deletions
|
|
@ -477,8 +477,10 @@ void SipAddressesModel::initSipAddresses () {
|
|||
mSipAddresses[sipAddress] = map;
|
||||
}
|
||||
|
||||
for (const auto &map : mSipAddresses)
|
||||
for (const auto &map : mSipAddresses) {
|
||||
qInfo() << QStringLiteral("Add sip address: `%1`.").arg(map["sipAddress"].toString());
|
||||
mRefs << ↦
|
||||
}
|
||||
|
||||
// Get sip addresses from contacts.
|
||||
for (auto &contact : CoreManager::getInstance()->getContactsListModel()->mList)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue