fix playlist sort by id (#1867) (#1868)

* fix playlist sort by id (#1867)
This commit is contained in:
kast3t
2026-03-24 06:27:21 +05:00
committed by GitHub
parent 09fa10a4e9
commit 6dc58a3ff8
@@ -604,6 +604,7 @@ export const NavidromeController: InternalControllerEndpoint = {
query: { query: {
_end: -1, _end: -1,
_order: 'ASC', _order: 'ASC',
_sort: NDSongListSort.ID,
_start: 0, _start: 0,
...excludeMissing(apiClientProps.server), ...excludeMissing(apiClientProps.server),
}, },
@@ -1010,6 +1011,7 @@ export const NavidromeController: InternalControllerEndpoint = {
query: { query: {
_end: -1, _end: -1,
_order: 'ASC', _order: 'ASC',
_sort: NDSongListSort.ID,
_start: 0, _start: 0,
...excludeMissing(apiClientProps.server), ...excludeMissing(apiClientProps.server),
}, },