Преглед изворни кода

suppress duplicate @Published emissions

Jonas Björkert пре 1 година
родитељ
комит
68d610456f
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      LoopFollow/Remote/RemoteViewController.swift

+ 2 - 2
LoopFollow/Remote/RemoteViewController.swift

@@ -16,8 +16,8 @@ class RemoteViewController: UIViewController {
         super.viewDidLoad()
 
         cancellable = Publishers.CombineLatest(
-            Storage.shared.remoteType.$value,
-            Storage.shared.device.$value
+            Storage.shared.remoteType.$value.removeDuplicates(),
+            Storage.shared.device.$value.removeDuplicates()
         )
         .sink { [weak self] _, _ in
             DispatchQueue.main.async {