diff options
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/gwps-common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c index 41edc00..53b1223 100644 --- a/apps/gui/gwps-common.c +++ b/apps/gui/gwps-common.c @@ -504,6 +504,12 @@ static char* get_tag(struct wps_data* wps_data, case 'c': /* ID3 Composer */ return id3->composer; + case 'C': /* ID3 Comment */ + return id3->comment; + + case 'A': /* ID3 Albumartist */ + return id3->albumartist; + case 'y': /* year */ if( id3->year_string ) return id3->year_string; |