瀏覽代碼

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 年之前
父節點
當前提交
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];
     }
 }