aboutsummaryrefslogtreecommitdiff
path: root/parseExceptions.js
diff options
context:
space:
mode:
Diffstat (limited to 'parseExceptions.js')
-rw-r--r--parseExceptions.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/parseExceptions.js b/parseExceptions.js
index 63cd6d2..42a1c50 100644
--- a/parseExceptions.js
+++ b/parseExceptions.js
@@ -50,9 +50,10 @@ assert.deepEqual(
async function updateExceptions(exceptions, DB) {
await DB.query_raw('DELETE FROM exceptions');
let dbOperations = [];
- for (line of exceptions.split('\n')) {
- if (line === '' || line[0] === '#')
- continue
+ for (let line of exceptions.split('\n')) {
+ if ((line === '') || (line === '\r') || (line[0] === '#')) {
+ continue;
+ }
const [start, end, header, message] = parseLine(line);
dbOperations.push(DB.execute(
'INSERT INTO exceptions VALUE (?, ?, ?, ?)',