diff --git a/Passepartout/App/macOS/CHANGELOG.md b/Passepartout/App/macOS/CHANGELOG.md index 17b30ef4..ae8bf221 100644 --- a/Passepartout/App/macOS/CHANGELOG.md +++ b/Passepartout/App/macOS/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Fixed + +- Last update was not refreshed on "Refresh infrastructure". + ## 1.17.2 (2021-11-30) ### Changed diff --git a/Passepartout/App/macOS/Scenes/Service/ProviderServiceView.swift b/Passepartout/App/macOS/Scenes/Service/ProviderServiceView.swift index 58948fcc..05d4763a 100644 --- a/Passepartout/App/macOS/Scenes/Service/ProviderServiceView.swift +++ b/Passepartout/App/macOS/Scenes/Service/ProviderServiceView.swift @@ -173,6 +173,10 @@ class ProviderServiceView: NSView { // MARK: Helpers func reloadData() { + guard let profile = profile else { + return + } + reloadHierarchy(withProfile: profile) } private func reloadHierarchy(withProfile profile: ProviderConnectionProfile) {