mirror of https://github.com/procxx/kepka.git
Fixed checking for song without file path.
This commit is contained in:
parent
590e6c8e9d
commit
d605b18ec0
|
@ -608,7 +608,12 @@ bool FileLoadTask::CheckForSong(
|
||||||
qstr(".ogg"),
|
qstr(".ogg"),
|
||||||
qstr(".flac"),
|
qstr(".flac"),
|
||||||
};
|
};
|
||||||
if (!CheckMimeOrExtensions(filepath, result->filemime, mimes, extensions)) {
|
if (!filepath.isEmpty()
|
||||||
|
&& !CheckMimeOrExtensions(
|
||||||
|
filepath,
|
||||||
|
result->filemime,
|
||||||
|
mimes,
|
||||||
|
extensions)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue