Fix Content Collection

This commit is contained in:
twinaphex 2015-05-22 02:51:45 +02:00
parent 8ebce6920c
commit 363780a239
2 changed files with 4 additions and 2 deletions

View File

@ -1926,7 +1926,9 @@ static int menu_displaylist_parse(menu_displaylist_info_t *info,
break; break;
} }
if (menu_displaylist_parse_historylist(info, playlist) == 0) ret = menu_displaylist_parse_historylist(info, playlist);
if (ret == 0)
{ {
*need_refresh = true; *need_refresh = true;
*need_push = true; *need_push = true;

View File

@ -407,7 +407,7 @@ static int action_ok_playlist_collection(const char *path,
strlcpy(info.path, path, sizeof(info.path)); strlcpy(info.path, path, sizeof(info.path));
strlcpy(info.label, label, sizeof(info.label)); strlcpy(info.label, label, sizeof(info.label));
return menu_displaylist_push_list(&info, DISPLAYLIST_PLAYLIST_COLLECTION); return menu_displaylist_push_list(&info, DISPLAYLIST_GENERIC);
} }
static int action_ok_content_collection_list(const char *path, static int action_ok_content_collection_list(const char *path,