mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-22 20:18:36 +00:00
Trim abandoned attachments after backupv1 restore.
This commit is contained in:
committed by
Greyson Parrelli
parent
c978671ab4
commit
ac4042fca4
@@ -7,6 +7,7 @@ import androidx.annotation.NonNull;
|
|||||||
import org.signal.core.util.logging.Log;
|
import org.signal.core.util.logging.Log;
|
||||||
import org.thoughtcrime.securesms.dependencies.AppDependencies;
|
import org.thoughtcrime.securesms.dependencies.AppDependencies;
|
||||||
import org.thoughtcrime.securesms.jobmanager.JobManager;
|
import org.thoughtcrime.securesms.jobmanager.JobManager;
|
||||||
|
import org.thoughtcrime.securesms.jobs.DeleteAbandonedAttachmentsJob;
|
||||||
import org.thoughtcrime.securesms.jobs.EmojiSearchIndexDownloadJob;
|
import org.thoughtcrime.securesms.jobs.EmojiSearchIndexDownloadJob;
|
||||||
import org.thoughtcrime.securesms.jobs.StickerPackDownloadJob;
|
import org.thoughtcrime.securesms.jobs.StickerPackDownloadJob;
|
||||||
import org.thoughtcrime.securesms.keyvalue.SignalStore;
|
import org.thoughtcrime.securesms.keyvalue.SignalStore;
|
||||||
@@ -60,6 +61,7 @@ public final class AppInitialization {
|
|||||||
AppDependencies.getJobManager().add(StickerPackDownloadJob.forReference(BlessedPacks.SWOON_HANDS.getPackId(), BlessedPacks.SWOON_HANDS.getPackKey()));
|
AppDependencies.getJobManager().add(StickerPackDownloadJob.forReference(BlessedPacks.SWOON_HANDS.getPackId(), BlessedPacks.SWOON_HANDS.getPackKey()));
|
||||||
AppDependencies.getJobManager().add(StickerPackDownloadJob.forReference(BlessedPacks.SWOON_FACES.getPackId(), BlessedPacks.SWOON_FACES.getPackKey()));
|
AppDependencies.getJobManager().add(StickerPackDownloadJob.forReference(BlessedPacks.SWOON_FACES.getPackId(), BlessedPacks.SWOON_FACES.getPackKey()));
|
||||||
EmojiSearchIndexDownloadJob.scheduleImmediately();
|
EmojiSearchIndexDownloadJob.scheduleImmediately();
|
||||||
|
DeleteAbandonedAttachmentsJob.enqueue();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ class DeleteAbandonedAttachmentsJob private constructor(parameters: Parameters)
|
|||||||
private val TAG = Log.tag(DeleteAbandonedAttachmentsJob::class)
|
private val TAG = Log.tag(DeleteAbandonedAttachmentsJob::class)
|
||||||
const val KEY = "DeleteAbandonedAttachmentsJob"
|
const val KEY = "DeleteAbandonedAttachmentsJob"
|
||||||
|
|
||||||
|
@JvmStatic
|
||||||
fun enqueue() {
|
fun enqueue() {
|
||||||
AppDependencies.jobManager.add(DeleteAbandonedAttachmentsJob())
|
AppDependencies.jobManager.add(DeleteAbandonedAttachmentsJob())
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user