Skip to content

Commit

Permalink
Merge branch 'commaai:master' into PA-testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Edison-CBS authored Oct 7, 2023
2 parents 27d5e16 + 7fd52cd commit 4fcd540
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ coverage:
informational: true
patch: off

ignore:
- "**/test_*.py"
2 changes: 2 additions & 0 deletions tools/cabana/messageswidget.cc
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ QVariant MessageListModel::headerData(int section, Qt::Orientation orientation,
}

QVariant MessageListModel::data(const QModelIndex &index, int role) const {
if (!index.isValid() || index.row() >= msgs.size()) return {};

const auto &id = msgs[index.row()];
auto &can_data = can->lastMessage(id);

Expand Down

0 comments on commit 4fcd540

Please sign in to comment.