replay: remove array subscript (#22268)

old-commit-hash: cb49ceabf0
commatwo_master
Dean Lee 4 years ago committed by GitHub
parent efd535c88b
commit 969f992d59
  1. 2
      selfdrive/ui/replay/replay.cc

@ -11,7 +11,7 @@
Replay::Replay(QString route, QStringList allow, QStringList block, SubMaster *sm_, QObject *parent) : sm(sm_), QObject(parent) {
std::vector<const char*> s;
for (const auto &it : services) {
if ((allow[0].size() == 0 || allow.contains(it.name)) &&
if ((allow.size() == 0 || allow.contains(it.name)) &&
!block.contains(it.name)) {
s.push_back(it.name);
socks.append(std::string(it.name));

Loading…
Cancel
Save