This commit is contained in:
Flummi 2017-01-14 21:10:45 +01:00
parent 1b8679b2ba
commit 426b12c476

View File

@ -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) => {
var items = {
"items": [],
"latest": stamp
"first": stamp,
"latest": 0
};
rows.forEach(e => {
items.items.push({
id: e.id,
mime: e.mime
});
items.latest = e.id;
items.latest = e.stamp;
});
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end(JSON.stringify(items), 'utf-8');
@ -338,4 +339,4 @@ Websrv.prototype.getTpls = () => {
"how": fs.readFileSync("./s/how.tpl.html", "utf-8"),
"contact": fs.readFileSync("./s/contact.tpl.html", "utf-8")
};
};
};