playlist/soundcloud: use config_dup_block_string()

This commit is contained in:
Max Kellermann 2012-03-01 19:59:28 +01:00
parent 7cef52478d
commit 553d4e9283
1 changed files with 3 additions and 5 deletions

View File

@ -43,16 +43,14 @@ static struct {
static bool
soundcloud_init(const struct config_param *param)
{
const char *apikey = config_get_block_string(param, "apikey", NULL);
if (apikey == NULL) {
soundcloud_config.apikey =
config_dup_block_string(param, "apikey", NULL);
if (soundcloud_config.apikey == NULL) {
g_debug("disabling the soundcloud playlist plugin "
"because API key is not set");
return false;
}
soundcloud_config.apikey = g_strdup(apikey);
return true;
}