aboutsummaryrefslogtreecommitdiff
path: root/controllers/albumsController.js
diff options
context:
space:
mode:
Diffstat (limited to 'controllers/albumsController.js')
-rw-r--r--controllers/albumsController.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/controllers/albumsController.js b/controllers/albumsController.js
index 72c8177..76129ec 100644
--- a/controllers/albumsController.js
+++ b/controllers/albumsController.js
@@ -15,6 +15,9 @@ albumsController.list = function(req, res, next){
db.table('albums').select(fields).then((albums) => {
+ if(req.headers.extended === undefined)
+ return res.json({ success: true, albums })
+
let ids = []
for(let album of albums){
album.date = new Date(album.timestamp * 1000)
@@ -23,9 +26,6 @@ albumsController.list = function(req, res, next){
ids.push(album.id)
}
- if(req.headers.extended === undefined)
- return res.json({ success: true, albums })
-
db.table('files').whereIn('albumid', ids).select('albumid').then((files) => {
let albumsCount = {}