summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-08-02 22:12:30 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2012-01-13 00:26:49 +0100
commitb7fd07a650759b867cb3cd9399e66bcc822b4bfb (patch)
tree8539d6a342cfee7b3714f9004bef0ac74279043b
parent1c66b50d6645c030b1005bad343348efafaf25e6 (diff)
mb4: don't try to handle ReleaseGroup::comment
Support for this has been removed from libmusicbrainz4 beta2
-rw-r--r--libjuicer/sj-metadata-musicbrainz4.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libjuicer/sj-metadata-musicbrainz4.c b/libjuicer/sj-metadata-musicbrainz4.c
index 4210b50..391e080 100644
--- a/libjuicer/sj-metadata-musicbrainz4.c
+++ b/libjuicer/sj-metadata-musicbrainz4.c
@@ -113,7 +113,6 @@ struct _SjMb4AlbumDetails {
char *country;
char *barcode;
char *type;
- char *comment;
char *format;
char *lyrics_url;
};
@@ -158,7 +157,6 @@ sj_mb4_album_details_free (SjMb4AlbumDetails *details)
g_free (details->country);
g_free (details->barcode);
g_free (details->type);
- g_free (details->comment);
g_free (details->format);
g_free (details->lyrics_url);
g_list_foreach (details->parent.tracks, (GFunc)sj_mb4_track_details_free, NULL);
@@ -186,8 +184,6 @@ sj_mb4_album_details_dump (SjMb4AlbumDetails *details)
g_print ("Barcode: %s\n", details->barcode);
if (details->type)
g_print ("Type: %s\n", details->type);
- if (details->comment)
- g_print ("Comment: %s\n", details->comment);
if (details->format)
g_print ("Format: %s\n", details->format);
if (details->lyrics_url)
@@ -441,7 +437,6 @@ make_album_from_release (Mb4ReleaseGroup group,
GET (mb4_album->barcode, mb4_release_get_barcode, release);
if (group) {
GET (mb4_album->type, mb4_releasegroup_get_type, group);
- GET (mb4_album->comment, mb4_releasegroup_get_comment, group);
if (g_str_has_suffix (mb4_album->type, "Spokenword")
|| g_str_has_suffix (mb4_album->type, "Interview")
|| g_str_has_suffix (mb4_album->type, "Audiobook")) {