mirror of
https://github.com/status-im/codimd.git
synced 2025-01-11 19:14:13 +00:00
Fixed readFromDB error might cause excpection
This commit is contained in:
parent
debcfdef14
commit
3fa264a43a
@ -85,7 +85,8 @@ function readFromDB(id, callback) {
|
||||
} else {
|
||||
//logger.info(result.rows);
|
||||
if (result.rows.length <= 0) {
|
||||
callback("not found note in db: " + util.inspect(id), null);
|
||||
callback("not found note in db", null);
|
||||
return logger.error("not found note in db: " + id, err);
|
||||
} else {
|
||||
if(config.debug)
|
||||
logger.info("read from db success");
|
||||
|
Loading…
x
Reference in New Issue
Block a user