Просмотр исходного кода

Update filtered bytes received when the network transactions change.

Previously we only updated the main bytes received state, but both can change when the network transactions change.
Ryan Olson лет назад: 11
Родитель
Сommit
462e0ed548
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      Classes/Network/FLEXNetworkHistoryTableViewController.m

+ 1 - 0
Classes/Network/FLEXNetworkHistoryTableViewController.m

@@ -75,6 +75,7 @@
     if (![_networkTransactions isEqual:networkTransactions]) {
         _networkTransactions = networkTransactions;
         [self updateBytesReceived];
+        [self updateFilteredBytesReceived];
     }
 }