first
This commit is contained in:
		@@ -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")
 | 
			
		||||
  };
 | 
			
		||||
};
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user