mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
lib/model: Replace for
loop with append
(#8457)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
This commit is contained in:
parent
80ec4acb53
commit
0bdd0d595b
@ -2851,9 +2851,7 @@ func (m *model) CommitConfiguration(from, to config.Configuration) bool {
|
||||
_, ok := m.folderEncryptionPasswordTokens[toCfg.ID]
|
||||
m.fmut.RUnlock()
|
||||
if !ok {
|
||||
for _, id := range toCfg.DeviceIDs() {
|
||||
closeDevices = append(closeDevices, id)
|
||||
}
|
||||
closeDevices = append(closeDevices, toCfg.DeviceIDs()...)
|
||||
} else {
|
||||
clusterConfigDevices.add(toCfg.DeviceIDs())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user