TunnelViewModel: Don't call peer change handler if there are no changes
Signed-off-by: Roopesh Chander <roop@roopc.net>
This commit is contained in:
parent
657ec34d19
commit
8a6a60482c
|
@ -462,7 +462,9 @@ class TunnelViewModel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
scratchpad = otherScratchPad
|
scratchpad = otherScratchPad
|
||||||
changeHandler(peerIndex, changes)
|
if !changes.isEmpty {
|
||||||
|
changeHandler(peerIndex, changes)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue