1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Keep spaces. Maybe fixes #838 (#840)

This commit is contained in:
Amir Raminfar
2020-11-21 17:58:34 -08:00
committed by GitHub
parent c3b8ce53d1
commit e269cc4f63
3 changed files with 12 additions and 10 deletions

View File

@@ -84,7 +84,7 @@ export default {
}
const key = data.substring(0, i);
const date = new Date(key);
const message = data.substring(i).trim();
const message = data.substring(i);
return { key, date, message };
},
},