Include txt too

Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
TheKodeToad 2025-04-18 23:59:35 +01:00
parent 8ea5eac29c
commit 19b241fd31
No known key found for this signature in database
GPG Key ID: 5E39D70B4C93C38E

View File

@ -404,13 +404,17 @@ QStringList OtherLogsPage::getPaths()
for (QString searchPath : m_logSearchPaths) { for (QString searchPath : m_logSearchPaths) {
QDirIterator iterator(searchPath, QDir::Files | QDir::Readable); QDirIterator iterator(searchPath, QDir::Files | QDir::Readable);
const bool isRoot = searchPath == m_basePath;
while (iterator.hasNext()) { while (iterator.hasNext()) {
const QString name = iterator.next(); const QString name = iterator.next();
if (!name.endsWith(".log") && !name.endsWith(".log.gz")) QString relativePath = baseDir.relativeFilePath(name);
if (!(name.endsWith(".log") || name.endsWith(".log.gz") || (!isRoot && name.endsWith(".txt"))))
continue; continue;
result.append(baseDir.relativeFilePath(name)); result.append(relativePath);
} }
} }