Explorar o código

fix UPnP listing updates not appearing until manual table view scolling due to background delegate callback

Tobias Conradi %!s(int64=9) %!d(string=hai) anos
pai
achega
0c658e2015

+ 3 - 1
Sources/LocalNetworkConnectivity/ServerBrowsing/VLCNetworkServerBrowserUPnP.m

@@ -76,7 +76,9 @@
         }
 
         self.items = [itemsArray copy];
-        [self.delegate networkServerBrowserDidUpdate:self];
+        [[NSOperationQueue mainQueue] addOperationWithBlock:^{
+            [self.delegate networkServerBrowserDidUpdate:self];
+        }];
     }];
 }