This commit is contained in:
Alexey Kasyanchuk
2017-02-06 15:23:47 +03:00
parent 5710289533
commit f226bdb251

View File

@ -259,7 +259,7 @@ io.on('connection', function(socket)
if(orderBy && orderBy.length > 0) if(orderBy && orderBy.length > 0)
{ {
const orderDesc = navigation.orderDesc ? 'DESC' : 'ASC'; const orderDesc = navigation.orderDesc ? 'DESC' : 'ASC';
args.unshift(orderBy); args.splice(1, 0, orderBy);
order = 'ORDER BY ?? ' + orderDesc; order = 'ORDER BY ?? ' + orderDesc;
} }
@ -299,7 +299,7 @@ io.on('connection', function(socket)
if(orderBy && orderBy.length > 0) if(orderBy && orderBy.length > 0)
{ {
const orderDesc = navigation.orderDesc ? 'DESC' : 'ASC'; const orderDesc = navigation.orderDesc ? 'DESC' : 'ASC';
args.unshift(orderBy); args.splice(1, 0, orderBy);
order = 'ORDER BY ?? ' + orderDesc; order = 'ORDER BY ?? ' + orderDesc;
} }