From ac9bfb194b0fcf2c9a5a7cd51e38457cf44acdfd Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 12 Jun 2013 17:17:40 -0700 Subject: [PATCH] Fix minor typo so that the metadata album field can be set. --- src/mod/formats/mod_shout/mod_shout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/formats/mod_shout/mod_shout.c b/src/mod/formats/mod_shout/mod_shout.c index 88ba993dea..c79598e9a5 100644 --- a/src/mod/formats/mod_shout/mod_shout.c +++ b/src/mod/formats/mod_shout/mod_shout.c @@ -1072,8 +1072,8 @@ static switch_status_t shout_file_set_string(switch_file_handle_t *handle, switc id3tag_set_year(context->gfp, string); break; case SWITCH_AUDIO_COL_STR_SOFTWARE: - break; id3tag_set_album(context->gfp, string); + break; case SWITCH_AUDIO_COL_STR_COPYRIGHT: id3tag_set_genre(context->gfp, string); break;