Fixed checking for song without file path.

This commit is contained in:
23rd 2019-04-01 18:48:14 +03:00 committed by John Preston
parent 590e6c8e9d
commit d605b18ec0
1 changed files with 6 additions and 1 deletions

View File

@ -608,7 +608,12 @@ bool FileLoadTask::CheckForSong(
qstr(".ogg"),
qstr(".flac"),
};
if (!CheckMimeOrExtensions(filepath, result->filemime, mimes, extensions)) {
if (!filepath.isEmpty()
&& !CheckMimeOrExtensions(
filepath,
result->filemime,
mimes,
extensions)) {
return false;
}