Fix missing propagation of serviceDelegate

See 170d089a44
This commit is contained in:
Davide De Rosa 2021-01-11 21:39:04 +01:00
parent 17e3ce9540
commit 0b0a95d6df
1 changed files with 3 additions and 1 deletions

View File

@ -319,7 +319,9 @@ public class ConnectionService: Codable {
if profile?.trustedNetworks == nil {
profile?.trustedNetworks = TrustedNetworks()
}
// propagate delegate
profile?.serviceDelegate = delegate
return profile
}