playlist/soundcloud: use config_dup_block_string()
This commit is contained in:
parent
7cef52478d
commit
553d4e9283
|
@ -43,16 +43,14 @@ static struct {
|
||||||
static bool
|
static bool
|
||||||
soundcloud_init(const struct config_param *param)
|
soundcloud_init(const struct config_param *param)
|
||||||
{
|
{
|
||||||
const char *apikey = config_get_block_string(param, "apikey", NULL);
|
soundcloud_config.apikey =
|
||||||
|
config_dup_block_string(param, "apikey", NULL);
|
||||||
if (apikey == NULL) {
|
if (soundcloud_config.apikey == NULL) {
|
||||||
g_debug("disabling the soundcloud playlist plugin "
|
g_debug("disabling the soundcloud playlist plugin "
|
||||||
"because API key is not set");
|
"because API key is not set");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
soundcloud_config.apikey = g_strdup(apikey);
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue