diff options
-rw-r--r-- | src/song_update.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/song_update.c b/src/song_update.c index e58896ed2..1d8f22d4d 100644 --- a/src/song_update.c +++ b/src/song_update.c @@ -118,7 +118,7 @@ song_file_update(struct song *song) /* load file tag */ song->tag = tag_new(); if (decoder_plugin_scan_file(plugin, path_fs, - &add_tag_handler, song->tag)) + &full_tag_handler, song->tag)) break; tag_free(song->tag); @@ -139,7 +139,7 @@ song_file_update(struct song *song) if (is != NULL) { song->tag = tag_new(); if (decoder_plugin_scan_stream(plugin, is, - &add_tag_handler, + &full_tag_handler, song->tag)) break; @@ -162,7 +162,7 @@ song_file_update(struct song *song) } if (song->tag != NULL && tag_is_empty(song->tag)) - tag_scan_fallback(path_fs, &add_tag_handler, song->tag); + tag_scan_fallback(path_fs, &full_tag_handler, song->tag); g_free(path_fs); return song->tag != NULL; |