Migrate queued jobs during SMS migration.

This commit is contained in:
Greyson Parrelli
2022-12-16 23:29:07 -05:00
parent 4d9dc42868
commit c6f29fc950
14 changed files with 144 additions and 33 deletions

View File

@@ -84,7 +84,7 @@ class MediaPreviewRepository {
fun remoteDelete(attachment: DatabaseAttachment): Completable {
return Completable.fromRunnable {
MessageSender.sendRemoteDelete(attachment.mmsId, true)
MessageSender.sendRemoteDelete(attachment.mmsId)
}.subscribeOn(Schedulers.io())
}