Corrected mistake on order
This commit is contained in:
parent
e6acfcb155
commit
94bc5084fe
|
@ -45,7 +45,7 @@ var getPathFromId = function(req, res, callback, id) {
|
||||||
"((camera).target).x AS tx, " +
|
"((camera).target).x AS tx, " +
|
||||||
"((camera).target).y AS ty, " +
|
"((camera).target).y AS ty, " +
|
||||||
"((camera).target).z AS tz " +
|
"((camera).target).z AS tz " +
|
||||||
"FROM keyboardevent WHERE user_id = $1;",
|
"FROM keyboardevent WHERE user_id = $1 ORDER BY time;",
|
||||||
[id],
|
[id],
|
||||||
function(err, result) {
|
function(err, result) {
|
||||||
res.locals.path = [];
|
res.locals.path = [];
|
||||||
|
|
Loading…
Reference in New Issue