mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-03 14:12:30 -06:00
Merge pull request #2268 from pmzqla/file-ext
Ignore .!qB when extracting file extensions
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user