Skip to content

Commit

Permalink
MainWindow: Allow Systemd251 formatting
Browse files Browse the repository at this point in the history
Possible fix for #81
  • Loading branch information
pentix committed Jun 12, 2022
1 parent b216780 commit 6358207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ void MainWindow::on_listBootsButton_clicked()
QString line = QString(lines.at(i).toLocal8Bit().constData());
QStringList columns = line.split(" ", QString::SkipEmptyParts);

if(columns.size() != 9){
if(columns.size() < 9){
continue;
}

Expand Down

0 comments on commit 6358207

Please sign in to comment.