summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/pictureflow.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c
index 232c3f6bc4..7a3495940c 100644
--- a/apps/plugins/pictureflow.c
+++ b/apps/plugins/pictureflow.c
@@ -510,6 +510,8 @@ bool get_albumart_for_index_from_db(const int slide_index, char *buf, int buflen
510 PREFERRED_IMG_HEIGHT); 510 PREFERRED_IMG_HEIGHT);
511 rb->strncpy( (char*)&id3.path, tcs.result, MAX_PATH ); 511 rb->strncpy( (char*)&id3.path, tcs.result, MAX_PATH );
512 id3.album = get_album_name(slide_index); 512 id3.album = get_album_name(slide_index);
513 /* xxx: Should set id3.artist / id3.albumartist to their real values */
514 id3.artist = id3.albumartist = NULL;
513 if ( rb->search_albumart_files(&id3, size, buf, buflen) ) 515 if ( rb->search_albumart_files(&id3, size, buf, buflen) )
514 result = true; 516 result = true;
515 else if ( rb->search_albumart_files(&id3, "", buf, buflen) ) 517 else if ( rb->search_albumart_files(&id3, "", buf, buflen) )
@@ -652,7 +654,8 @@ bool create_albumart_cache(bool force)
652 if ( rb->button_get(false) == PICTUREFLOW_MENU ) return false; 654 if ( rb->button_get(false) == PICTUREFLOW_MENU ) return false;
653 } 655 }
654 if ( slides == 0 ) { 656 if ( slides == 0 ) {
655 rb->splash(2*HZ, "No albums found"); 657 /* Warn the user that we couldn't find any albumart */
658 rb->splash(2*HZ, "No album art found");
656 return false; 659 return false;
657 } 660 }
658 config.avg_album_width /= slides; 661 config.avg_album_width /= slides;