mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-13 00:07:54 +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.
|
||||
*/
|
||||
QString fsutils::fileExtension(const QString &filename) {
|
||||
const int point_index = filename.lastIndexOf(".");
|
||||
return (point_index >= 0) ? filename.mid(point_index + 1) : QString();
|
||||
QString ext = QString(filename).remove(".!qB");
|
||||
const int point_index = ext.lastIndexOf(".");
|
||||
return (point_index >= 0) ? ext.mid(point_index + 1) : QString();
|
||||
}
|
||||
|
||||
QString fsutils::fileName(const QString& file_path) {
|
||||
|
Loading…
Reference in New Issue
Block a user