remove multiple numberic prefixes

This commit is contained in:
Martchus 2015-10-07 23:50:14 +02:00
parent bc9e21950a
commit c692795a9d
1 changed files with 2 additions and 2 deletions

View File

@ -225,9 +225,9 @@ void parseFileName(const QString &fileName, QString &title, int &trackNumber)
}
}
title.remove(0, titleStart);
return;
} else {
delimIndex = title.indexOf(delim, lastDelimIndex = delimIndex + delim.size());
}
delimIndex = title.indexOf(delim, lastDelimIndex = delimIndex + delim.size());
}
}
}