script bugfixes

This commit is contained in:
azivner
2018-01-30 21:25:47 -05:00
parent 5217339209
commit 72bd2507fe
4 changed files with 7 additions and 29 deletions

View File

@@ -40,7 +40,7 @@ class Note extends Entity {
}
beforeSaving() {
this.content = JSON.stringify(this.jsonContent, null, 4);
this.content = JSON.stringify(this.jsonContent, null, '\t');
if (this.isProtected) {
protected_session.encryptNote(this.dataKey, this);