mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-01 11:39:26 +00:00
fix(Timeline): update correctly timeline entry when local address is not set
This commit is contained in:
parent
429057756a
commit
21113dcb7a
2 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@
|
|||
// =============================================================================
|
||||
|
||||
function setSelectedEntry (peerAddress, localAddress) {
|
||||
if (localAddress !== Linphone.AccountSettingsModel.sipAddress) {
|
||||
if (localAddress != null && localAddress !== Linphone.AccountSettingsModel.sipAddress) {
|
||||
resetSelectedEntry()
|
||||
return
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Rectangle {
|
|||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
signal entrySelected (var entry)
|
||||
signal entrySelected (string entry)
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue