parent-child relationship is now stored in notes_parent table

This commit is contained in:
azivner
2017-11-18 18:57:50 -05:00
parent 9a819cafed
commit cc3c9d6428
5 changed files with 58 additions and 13 deletions

View File

@@ -128,9 +128,11 @@ async function wrap(func) {
return await func(db);
}
catch (e) {
log.error("Error executing query. Inner exception: " + e.stack + error.stack);
const thisError = new Error();
throw new Error();
log.error("Error executing query. Inner exception: " + e.stack + thisError.stack);
throw thisError;
}
}