From 84e0cb1daad5a5a018bba72a193190521cfe7d08 Mon Sep 17 00:00:00 2001 From: Kaeptm Blaubaer Date: Tue, 13 Aug 2019 07:39:00 +0200 Subject: [PATCH] Escape ; too in instance folder names --- api/logic/FileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/logic/FileSystem.cpp b/api/logic/FileSystem.cpp index 49af2927..13f05b86 100644 --- a/api/logic/FileSystem.cpp +++ b/api/logic/FileSystem.cpp @@ -299,7 +299,7 @@ QString NormalizePath(QString path) } } -QString badFilenameChars = "\"\\/?<>:*|!+\r\n"; +QString badFilenameChars = "\"\\/?<>:;*|!+\r\n"; QString RemoveInvalidFilenameChars(QString string, QChar replaceWith) {