diff --git a/src/shared/proparser/profileparser.cpp b/src/shared/proparser/profileparser.cpp index c1aae00d7ec84129506d1285daa936faf3d82c79..f9dc575967770b1d1b6b14bba636370c073a8bbb 100644 --- a/src/shared/proparser/profileparser.cpp +++ b/src/shared/proparser/profileparser.cpp @@ -461,7 +461,7 @@ bool ProFileParser::read(ProFile *pro, const QString &in) rtok = tok; while ((c & 0xFF00) || c == '.' || c == '_' || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || - (c >= '0' && c <= '9')) { + (c >= '0' && c <= '9') || (c == '/' && term)) { *ptr++ = c; if (++cur == end) { c = 0;