mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
fix: this.db > this._db
This commit is contained in:
@@ -172,9 +172,9 @@ class Prepare {
|
|||||||
this._lastSyncedTimestamp = lastSyncedTimestamp;
|
this._lastSyncedTimestamp = lastSyncedTimestamp;
|
||||||
return {
|
return {
|
||||||
notes: this._prepareForServer(this._db.notes.all),
|
notes: this._prepareForServer(this._db.notes.all),
|
||||||
notebooks: this._prepareForServer(this.db.notebooks.all),
|
notebooks: this._prepareForServer(this._db.notebooks.all),
|
||||||
delta: this._prepareForServer(await this.db.delta.all()),
|
delta: this._prepareForServer(await this._db.delta.all()),
|
||||||
text: this._prepareForServer(await this.db.text.all()),
|
text: this._prepareForServer(await this._db.text.all()),
|
||||||
tags: this._prepareForServer(this._db.tags.all),
|
tags: this._prepareForServer(this._db.tags.all),
|
||||||
colors: this._prepareForServer(this._db.colors.all),
|
colors: this._prepareForServer(this._db.colors.all),
|
||||||
trash: [],
|
trash: [],
|
||||||
|
|||||||
Reference in New Issue
Block a user