mirror of
https://github.com/etesync/android
synced 2025-02-22 12:32:03 +00:00
Remove wrong not-null assertion.
This commit is contained in:
parent
db8667e84a
commit
7eee04f458
@ -417,7 +417,7 @@ constructor(protected val context: Context, protected val account: Account, prot
|
|||||||
for (local in localDeleted!!) {
|
for (local in localDeleted!!) {
|
||||||
val entry = SyncEntry(local.content, SyncEntry.Actions.DELETE)
|
val entry = SyncEntry(local.content, SyncEntry.Actions.DELETE)
|
||||||
val tmp = JournalEntryManager.Entry()
|
val tmp = JournalEntryManager.Entry()
|
||||||
tmp.update(crypto, entry.toJson(), previousEntry!!)
|
tmp.update(crypto, entry.toJson(), previousEntry)
|
||||||
previousEntry = tmp
|
previousEntry = tmp
|
||||||
localEntries!!.add(previousEntry)
|
localEntries!!.add(previousEntry)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user