Include txt too
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
parent
8ea5eac29c
commit
19b241fd31
1 changed files with 6 additions and 2 deletions
|
@ -404,13 +404,17 @@ QStringList OtherLogsPage::getPaths()
|
|||
for (QString searchPath : m_logSearchPaths) {
|
||||
QDirIterator iterator(searchPath, QDir::Files | QDir::Readable);
|
||||
|
||||
const bool isRoot = searchPath == m_basePath;
|
||||
|
||||
while (iterator.hasNext()) {
|
||||
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;
|
||||
|
||||
result.append(baseDir.relativeFilePath(name));
|
||||
result.append(relativePath);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue