diff --git a/ChangeLog b/ChangeLog index 6d976f73..8888c9a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -22924,3 +22924,6 @@ 2022-03-02 Fred Gleason * Fixed a bug in the log filter widget that caused entries in the 'Services' dropdown be listed in non-alphabetical order. +2022-03-02 Fred Gleason + * Fixed a regression in 'RDLogFilter' that caused a SQL error to be + generated filtering for 'recent' logs. diff --git a/lib/rdloglistmodel.cpp b/lib/rdloglistmodel.cpp index 3ada064f..ce106d56 100644 --- a/lib/rdloglistmodel.cpp +++ b/lib/rdloglistmodel.cpp @@ -246,8 +246,8 @@ void RDLogListModel::updateModel(const QString &filter_sql) "where "+ "(`TYPE`=0)&&"+ "(`LOG_EXISTS`='Y') "+ - filter_sql+ - "order by `NAME` "; + filter_sql; + // "order by `NAME` "; beginResetModel(); d_texts.clear(); d_icons.clear();