Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
config: fix prefer_picon name in the storage structure, fixes #2413
  • Loading branch information
perexg committed Oct 23, 2014
1 parent ea0ea58 commit d0ee059
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.c
Expand Up @@ -1403,13 +1403,13 @@ int config_set_muxconfpath ( const char *path )
int config_get_prefer_picon ( void )
{
int b = 0;
htsmsg_get_bool(config, "picon_prefer", &b);
htsmsg_get_bool(config, "prefer_picon", &b);
return b;
}

int config_set_prefer_picon ( const char *str )
{
return _config_set_str("picon_prefer", str);
return _config_set_str("prefer_picon", str);
}

const char *config_get_chicon_path ( void )
Expand Down

0 comments on commit d0ee059

Please sign in to comment.