Only search for covers automatically if artist & album is filled.

This commit is contained in:
Andreas 2014-05-07 21:17:33 +02:00
parent 40a7ae24fc
commit c04eb3da19
1 changed files with 2 additions and 1 deletions

View File

@ -525,7 +525,8 @@ bool NowPlayingWidget::GetCoverAutomatically() {
bool search =
album_cover_choice_controller_->search_cover_auto_action()->isChecked() &&
!metadata_.has_manually_unset_cover() &&
metadata_.art_automatic().isEmpty() && metadata_.art_manual().isEmpty();
metadata_.art_automatic().isEmpty() && metadata_.art_manual().isEmpty() &&
!metadata_.artist().isEmpty() && !metadata_.album().isEmpty();
if (search) {
qLog(Debug) << "GetCoverAutomatically";