From 70bb1cbc7a1792c52ae5abdb24fbf2487d4cf1a0 Mon Sep 17 00:00:00 2001 From: chme Date: Fri, 24 Apr 2020 05:55:37 +0200 Subject: [PATCH] [web-src] Order new podcast episodes by release date --- web-src/src/webapi/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-src/src/webapi/index.js b/web-src/src/webapi/index.js index 0be577e4..178c9815 100644 --- a/web-src/src/webapi/index.js +++ b/web-src/src/webapi/index.js @@ -284,7 +284,7 @@ export default { library_podcast_episodes (albumId) { var episodesParams = { type: 'tracks', - expression: 'media_kind is podcast and songalbumid is "' + albumId + '" ORDER BY time_added DESC' + expression: 'media_kind is podcast and songalbumid is "' + albumId + '" ORDER BY date_released DESC' } return axios.get('/api/search', { params: episodesParams