diff options
Diffstat (limited to '')
-rw-r--r-- | src/song.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/song.c b/src/song.c index 096b1afbd..0bdf40c02 100644 --- a/src/song.c +++ b/src/song.c @@ -67,7 +67,7 @@ Song *newSong(const char *url, enum song_type type, Directory * parentDir) while (!song->tag && (plugin = isMusic(abs_path, &(song->mtime), next++))) { - song->tag = plugin->tag_dup_func(abs_path); + song->tag = plugin->tag_dup(abs_path); } if (!song->tag || song->tag->time < 0) { freeSong(song); @@ -111,7 +111,7 @@ int updateSongInfo(Song * song) while (!song->tag && (plugin = isMusic(abs_path, &(song->mtime), next++))) { - song->tag = plugin->tag_dup_func(abs_path); + song->tag = plugin->tag_dup(abs_path); } if (!song->tag || song->tag->time < 0) return -1; |