forked from 0x2620/pandora
fix #2229 (Duplicating a featured list/edit should not produce a featured item)
This commit is contained in:
parent
7924bb1d2c
commit
56995b8dd7
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ pandora.addFolderItem = function(section) {
|
|||
listData = pandora.getListData();
|
||||
data = {
|
||||
name: listData.name,
|
||||
status: listData.status,
|
||||
status: listData.status == 'featured' ? 'public' : listData.status,
|
||||
type: listData.type
|
||||
};
|
||||
if (data.type == 'smart') {
|
||||
|
|
Loading…
Reference in a new issue