Corrected server bug
This commit is contained in:
parent
8e592c87b5
commit
6fc282b933
|
@ -170,7 +170,7 @@ var addPreviousNextFromId = function(client, req, res, callback, id) {
|
||||||
|
|
||||||
var addHoveredFromId = function(client, req, res, callback, id) {
|
var addHoveredFromId = function(client, req, res, callback, id) {
|
||||||
client.query(
|
client.query(
|
||||||
"SELECT start, time, arrow_id FROM hovered WHERE id = $1",
|
"SELECT start, time, arrow_id FROM hovered WHERE user_id = $1",
|
||||||
[id],
|
[id],
|
||||||
function(err, result) {
|
function(err, result) {
|
||||||
res.locals.path = res.locals.path || [];
|
res.locals.path = res.locals.path || [];
|
||||||
|
|
Loading…
Reference in New Issue