diff --git a/ChangeLog b/ChangeLog index df088d64..631cbcc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23261,3 +23261,6 @@ 2022-09-06 Fred Gleason * Fixed a bug in rdservice(8) that could cause a segfault when started with a previous instance running. +2022-09-07 Fred Gleason + * Fixed a regression in rdcatch(1) that broke operation of the + head and tail audition buttons. diff --git a/rdcatch/recordlistmodel.cpp b/rdcatch/recordlistmodel.cpp index d23e4c91..29d6ee64 100644 --- a/rdcatch/recordlistmodel.cpp +++ b/rdcatch/recordlistmodel.cpp @@ -301,7 +301,7 @@ QString RecordListModel::hostName(const QModelIndex &row) const QString RecordListModel::cutName(const QModelIndex &row) const { - return d_texts.at(row.row()).at(25).toString(); + return d_texts.at(row.row()).at(26).toString(); }