Fix get podcast library items endpoint when not including a limit query param #4014

This commit is contained in:
advplyr 2025-02-20 17:40:54 -06:00
parent 565eb423ee
commit 7919a8b581

View file

@ -112,7 +112,7 @@ module.exports = {
countCache.set(cacheKey, count)
}
findOptions.limit = limit
findOptions.limit = limit || null
findOptions.offset = offset
const rows = await model.findAll(findOptions)