Skip to content

Commit

Permalink
Merge pull request #1442 from 1hitsong/boxsetDefaultOrder
Browse files Browse the repository at this point in the history
  • Loading branch information
cewert authored Oct 28, 2023
2 parents dff9a69 + 71fe9da commit 1175263
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/ItemGrid/ItemGrid.brs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,15 @@ sub loadInitialItems()
m.view = m.global.session.user.settings["display." + m.top.parentItem.Id + ".landing"]
end if

if m.sortField = invalid then m.sortField = "SortName"
if m.sortField = invalid
' Set the default order for boxsets to the Release Date - API calls it PremiereDate
if LCase(m.top.parentItem.json.Type) = "boxset"
m.sortField = "PremiereDate"
else
m.sortField = "SortName"
end if
end if

if m.filter = invalid then m.filter = "All"

if sortAscendingStr = invalid or sortAscendingStr = true
Expand Down

0 comments on commit 1175263

Please sign in to comment.