first
This commit is contained in:
parent
1b8679b2ba
commit
426b12c476
@ -254,14 +254,15 @@ function Websrv(tlib) {
|
|||||||
lib.sql.query("select * from `f0ck`.`items` where `stamp` < ? order by `stamp` desc limit ?", [stamp, eps], (err, rows) => {
|
lib.sql.query("select * from `f0ck`.`items` where `stamp` < ? order by `stamp` desc limit ?", [stamp, eps], (err, rows) => {
|
||||||
var items = {
|
var items = {
|
||||||
"items": [],
|
"items": [],
|
||||||
"latest": stamp
|
"first": stamp,
|
||||||
|
"latest": 0
|
||||||
};
|
};
|
||||||
rows.forEach(e => {
|
rows.forEach(e => {
|
||||||
items.items.push({
|
items.items.push({
|
||||||
id: e.id,
|
id: e.id,
|
||||||
mime: e.mime
|
mime: e.mime
|
||||||
});
|
});
|
||||||
items.latest = e.id;
|
items.latest = e.stamp;
|
||||||
});
|
});
|
||||||
res.writeHead(200, { 'Content-Type': 'text/html' });
|
res.writeHead(200, { 'Content-Type': 'text/html' });
|
||||||
res.end(JSON.stringify(items), 'utf-8');
|
res.end(JSON.stringify(items), 'utf-8');
|
||||||
@ -338,4 +339,4 @@ Websrv.prototype.getTpls = () => {
|
|||||||
"how": fs.readFileSync("./s/how.tpl.html", "utf-8"),
|
"how": fs.readFileSync("./s/how.tpl.html", "utf-8"),
|
||||||
"contact": fs.readFileSync("./s/contact.tpl.html", "utf-8")
|
"contact": fs.readFileSync("./s/contact.tpl.html", "utf-8")
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user