fix history order

This commit is contained in:
likehomedream 2023-12-11 16:48:12 +08:00
parent ed0e61b855
commit 0ae13d0b09
1 changed files with 1 additions and 2 deletions

View File

@ -103,8 +103,7 @@ void HistoryWidget::updateHistoryDir()
QDateTime folderDateTime = QDateTime::fromString(yearStr + monthStr + dayStr + hourStr + minuteStr + secondStr, "yyyyMMddhhmmss");
if (folderDateTime.isValid() && folderDateTime.daysTo(currentDate) <= 30) {
qDebug() << "Processing folder222: " << folder;
validFolders.append(folder);
validFolders.prepend(folder);
}
}