Fix logic error in saving favorites for IIDX
This commit is contained in:
parent
a62cc92717
commit
6c41c826d9
@ -2051,16 +2051,17 @@ class IIDXCannonBallers(IIDXCourse, IIDXBase):
|
||||
})
|
||||
|
||||
# Filter out empty charts
|
||||
singles = [single for single in singles if single['id'] != 0]
|
||||
doubles = [double for double in doubles if double['id'] != 0]
|
||||
if name is not None:
|
||||
singles = [single for single in singles if single['id'] != 0]
|
||||
doubles = [double for double in doubles if double['id'] != 0]
|
||||
|
||||
newprofile.replace_dict(
|
||||
name,
|
||||
{
|
||||
'single': singles,
|
||||
'double': doubles,
|
||||
},
|
||||
)
|
||||
newprofile.replace_dict(
|
||||
name,
|
||||
{
|
||||
'single': singles,
|
||||
'double': doubles,
|
||||
},
|
||||
)
|
||||
|
||||
# DJ rank saving
|
||||
for dj_rank in request.children:
|
||||
|
@ -1768,16 +1768,17 @@ class IIDXRootage(IIDXCourse, IIDXBase):
|
||||
})
|
||||
|
||||
# Filter out empty charts
|
||||
singles = [single for single in singles if single['id'] != 0]
|
||||
doubles = [double for double in doubles if double['id'] != 0]
|
||||
if name is not None:
|
||||
singles = [single for single in singles if single['id'] != 0]
|
||||
doubles = [double for double in doubles if double['id'] != 0]
|
||||
|
||||
newprofile.replace_dict(
|
||||
name,
|
||||
{
|
||||
'single': singles,
|
||||
'double': doubles,
|
||||
},
|
||||
)
|
||||
newprofile.replace_dict(
|
||||
name,
|
||||
{
|
||||
'single': singles,
|
||||
'double': doubles,
|
||||
},
|
||||
)
|
||||
|
||||
# DJ rank saving
|
||||
for dj_rank in request.children:
|
||||
|
Loading…
Reference in New Issue
Block a user