소스 검색

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];
     }
 }