We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac9b98 commit ba6dc76Copy full SHA for ba6dc76
src/settings.cpp
@@ -178,7 +178,7 @@ QStringList Settings::SplitQStringList(QString str)
178
for(int i = 0; i < str.length(); ++i)
179
{
180
// revert escaped characters
181
- if(str[i] == '\\')
+ if(str[i] == '\\' && (str[i+1] == ',' || str[i+1] == '\\')) // treat invalid escape sequences as normal '\'s
182
entry += str[++i];
183
else if(str[i] == ',')
184
0 commit comments