diff options
author | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-02-12 22:02:02 +0100 |
---|---|---|
committer | Alexey Yakovenko <waker@users.sourceforge.net> | 2014-02-12 22:02:02 +0100 |
commit | 64e2e5b426a4319f79c356f2bf1795afa658cf89 (patch) | |
tree | 1b7a146a024cbc71bd489272b1489dc207708bb7 /plugins | |
parent | b7e6b93e538f666e9bc036db11ebd5293a563051 (diff) |
lastfm: change mbid to musicbrainz_trackid
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/lastfm/lastfm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/lastfm/lastfm.c b/plugins/lastfm/lastfm.c index 2750cfb2..e824915d 100644 --- a/plugins/lastfm/lastfm.c +++ b/plugins/lastfm/lastfm.c @@ -355,7 +355,7 @@ lfm_fetch_song_info (DB_playItem_t *song, char *a, char *t, char *b, float *l, c if (!deadbeef->pl_get_meta (song, "track", n, META_FIELD_SIZE)) { *n = 0; } - if (!deadbeef->pl_get_meta (song, "mbid", m, META_FIELD_SIZE)) { + if (!deadbeef->pl_get_meta (song, "musicbrainz_trackid", m, META_FIELD_SIZE)) { *m = 0; } return 0; |