Fix some bugs

This commit is contained in:
Jonatan Nilsson 2020-04-07 11:08:37 +00:00
parent 7896616c16
commit 02c5195d9c
2 changed files with 3 additions and 3 deletions

View file

@ -41,9 +41,9 @@ export async function create(ctx, data) {
data.settings.main = '<%- text %> - <%- finished %>' data.settings.main = '<%- text %> - <%- finished %>'
} }
let graphics = ctx.db.get('graphics').insert(data) let graphics = ctx.db.get('graphics')
await graphics.insert(data).write()
let graphic = graphics.last().value() let graphic = graphics.last().value()
await graphics.write()
ctx.io.emit('graphic.single', graphic) ctx.io.emit('graphic.single', graphic)
} }

View file

@ -45,7 +45,7 @@ lowdb().then(function(db) {
fileServer.serve(req, res, function (err) { fileServer.serve(req, res, function (err) {
if (err) { if (err) {
logger.error(err); log.error(err);
res.writeHead(err.status, err.headers); res.writeHead(err.status, err.headers);
res.end(err.message); res.end(err.message);