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