Skip to content

Commit

Permalink
Update net_base.py (#416)
Browse files Browse the repository at this point in the history
Fix Bug in checking for ZLIVEUSAGE.TIMESTAMP
  • Loading branch information
Helthy authored Nov 15, 2023
1 parent 4b4cad4 commit 2098201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mvt/ios/modules/net_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _extract_net_data(self):
"wwan_out": row[8],
"live_id": row[9],
"live_proc_id": row[10],
"live_isodate": live_timestamp if row[10] else first_isodate,
"live_isodate": live_timestamp if row[11] else first_isodate,
}
)

Expand Down

0 comments on commit 2098201

Please sign in to comment.