mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-18 18:35:14 +08:00
Merge pull request #2268 from pmzqla/file-ext
Ignore .!qB when extracting file extensions
This commit is contained in:
commit
7e16094ac6
@ -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