mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-12 15:57:57 +00:00
Ignore .!qB when extracting file extensions
This commit is contained in:
parent
513f71e000
commit
2389495d96
@ -89,8 +89,9 @@ QString fsutils::fromNativePath(const QString &path) {
|
|||||||
* Returns the file extension part of a file name.
|
* Returns the file extension part of a file name.
|
||||||
*/
|
*/
|
||||||
QString fsutils::fileExtension(const QString &filename) {
|
QString fsutils::fileExtension(const QString &filename) {
|
||||||
const int point_index = filename.lastIndexOf(".");
|
QString ext = QString(filename).remove(".!qB");
|
||||||
return (point_index >= 0) ? filename.mid(point_index + 1) : QString();
|
const int point_index = ext.lastIndexOf(".");
|
||||||
|
return (point_index >= 0) ? ext.mid(point_index + 1) : QString();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString fsutils::fileName(const QString& file_path) {
|
QString fsutils::fileName(const QString& file_path) {
|
||||||
|
Loading…
Reference in New Issue
Block a user