Ensure message deletion marks event deleted.
This commit is contained in:
parent
c881c67f5e
commit
3e63ac46b4
1 changed files with 4 additions and 1 deletions
|
@ -229,7 +229,10 @@ class CallTable(context: Context, databaseHelper: SignalDatabase) : DatabaseTabl
|
|||
|
||||
db
|
||||
.update(TABLE_NAME)
|
||||
.values(DELETION_TIMESTAMP to System.currentTimeMillis())
|
||||
.values(
|
||||
EVENT to Event.serialize(Event.DELETE),
|
||||
DELETION_TIMESTAMP to System.currentTimeMillis()
|
||||
)
|
||||
.where(where, type)
|
||||
.run()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue