PlaylistPlugin: pass config_param reference
This commit is contained in:
@@ -44,10 +44,10 @@ static struct {
|
||||
} lastfm_config;
|
||||
|
||||
static bool
|
||||
lastfm_init(const struct config_param *param)
|
||||
lastfm_init(const config_param ¶m)
|
||||
{
|
||||
const char *user = config_get_block_string(param, "user", NULL);
|
||||
const char *passwd = config_get_block_string(param, "password", NULL);
|
||||
const char *user = param.GetBlockValue("user");
|
||||
const char *passwd = param.GetBlockValue("password");
|
||||
|
||||
if (user == NULL || passwd == NULL) {
|
||||
g_debug("disabling the last.fm playlist plugin "
|
||||
|
||||
@@ -35,10 +35,9 @@ static struct {
|
||||
} soundcloud_config;
|
||||
|
||||
static bool
|
||||
soundcloud_init(const struct config_param *param)
|
||||
soundcloud_init(const config_param ¶m)
|
||||
{
|
||||
soundcloud_config.apikey =
|
||||
config_dup_block_string(param, "apikey", NULL);
|
||||
soundcloud_config.apikey = param.DupBlockString("apikey");
|
||||
if (soundcloud_config.apikey == NULL) {
|
||||
g_debug("disabling the soundcloud playlist plugin "
|
||||
"because API key is not set");
|
||||
|
||||
Reference in New Issue
Block a user