diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2024-03-15 14:24:51 +0100 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2024-03-15 14:24:51 +0100 |
| commit | a28507db595ccf416a60e6d4426eb3ae5ce657a1 (patch) | |
| tree | 53feeb07eada854f8c685b9999c8cfe3586de27c | |
| parent | 0a3c63ac912914628971dceca7b2f28d7b91d272 (diff) | |
| parent | 74581f2c91015c3afb498f32c6ab2f8d21f949ae (diff) | |
| download | mullvadvpn-a28507db595ccf416a60e6d4426eb3ae5ce657a1.tar.xz mullvadvpn-a28507db595ccf416a60e6d4426eb3ae5ce657a1.zip | |
Merge branch 'fix-memory-leak-at-locationnode-ios-556'
| -rw-r--r-- | ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift b/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift index 38e6197fcd..8be5c29580 100644 --- a/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift +++ b/ios/MullvadVPN/View controllers/SelectLocation/LocationNode.swift @@ -13,7 +13,7 @@ class LocationNode { let name: String var code: String var locations: [RelayLocation] - var parent: LocationNode? + weak var parent: LocationNode? var children: [LocationNode] var showsChildren: Bool var isHiddenFromSearch: Bool |
