Skip to content

Commit dfb30d9

Browse files
committed
NOISSUE warn users about MS Edge being bad
1 parent 4ed6741 commit dfb30d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

application/MainWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1896,7 +1896,7 @@ void MainWindow::checkInstancePathForProblems()
18961896
warning.setDefaultButton(QMessageBox::Ok);
18971897
warning.exec();
18981898
}
1899-
else if (pathfoldername.startsWith(QDir::tempPath()))
1899+
else if (pathfoldername.startsWith(QDir::tempPath()) || pathfoldername.contains("/TempState/"))
19001900
{
19011901
QMessageBox warning(this);
19021902
warning.setText(tr("Your instance folder is in a temporary folder: \'%1\'!").arg(QDir::tempPath()));

0 commit comments

Comments
 (0)