Fixing media paths (yet again)

This commit is contained in:
Don Honerbrink 2015-03-08 23:20:59 -05:00
parent e9b7bd08ad
commit bb705af81b
2 changed files with 4 additions and 1 deletions

View File

@ -347,7 +347,7 @@ void Configuration::GetMediaPropertyAbsolutePath(std::string collectionName, std
void Configuration::GetMediaPropertyAbsolutePath(std::string collectionName, std::string mediaType, bool system, std::string &value)
{
std::string key = "collections.media." + collectionName + "." + mediaType;
std::string key = "collections." + collectionName + ".media." + mediaType;
// use user-overridden setting if it exists
if(GetPropertyAbsolutePath(key, value))

View File

@ -443,6 +443,9 @@ RetroFE::RETROFE_STATE RetroFE::ProcessUserInput(Page *page)
{
Config.SetCurrentCollection(NextPageItem->GetName());
CollectionInfo *info = GetCollection(NextPageItem->GetName());
MenuParser mp;
mp.GetMenuItems(info);
CurrentPage->PushCollection(info);
MenuParser mp;
mp.GetMenuItems(info);