lib/config: Subscribers get a copy of the config

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3722
This commit is contained in:
Audrius Butkevicius 2016-11-11 14:52:23 +00:00 committed by Jakob Borg
parent 6ec9b84674
commit 56e2ba29d0
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ func (w *Wrapper) replaceLocked(to Configuration) error {
func (w *Wrapper) notifyListeners(from, to Configuration) {
for _, sub := range w.subs {
go w.notifyListener(sub, from, to)
go w.notifyListener(sub, from.Copy(), to.Copy())
}
}