summaryrefslogtreecommitdiff
path: root/apps/wps-display.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wps-display.c')
-rw-r--r--apps/wps-display.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index e11ec8a520..8cbf7db75e 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -355,6 +355,7 @@ static char* get_tag(struct mp3entry* cid3,
355 { 355 {
356 case 'I': /* ID3 Information */ 356 case 'I': /* ID3 Information */
357 id3 = nid3; /* display next-song data */ 357 id3 = nid3; /* display next-song data */
358 *flags |= WPS_REFRESH_DYNAMIC;
358 if(!id3) 359 if(!id3)
359 return NULL; /* no such info (yet) */ 360 return NULL; /* no such info (yet) */
360 /* fall-through */ 361 /* fall-through */
@@ -422,6 +423,7 @@ static char* get_tag(struct mp3entry* cid3,
422 423
423 case 'F': /* File Information */ 424 case 'F': /* File Information */
424 id3 = nid3; 425 id3 = nid3;
426 *flags |= WPS_REFRESH_DYNAMIC;
425 if(!id3) 427 if(!id3)
426 return NULL; /* no such info (yet) */ 428 return NULL; /* no such info (yet) */
427 /* fall-through */ 429 /* fall-through */
@@ -581,6 +583,7 @@ static char* get_tag(struct mp3entry* cid3,
581 583
582 case 'D': /* Directory path information */ 584 case 'D': /* Directory path information */
583 id3 = nid3; /* next song please! */ 585 id3 = nid3; /* next song please! */
586 *flags |= WPS_REFRESH_DYNAMIC;
584 if(!id3) 587 if(!id3)
585 return NULL; /* no such info (yet) */ 588 return NULL; /* no such info (yet) */
586 /* fall-through */ 589 /* fall-through */