chore(backup/create): Remove fixme note [skip ci]

The issues I was having with auto backup was caused by my device's Power
Saving, unfortunately I don't think there's a way around it...
This commit is contained in:
Ahmad Ansori Palembani 2024-11-27 13:46:42 +07:00
parent 34818eb7de
commit 5d2a08f2b0
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -47,14 +47,6 @@ class BackupCreatorJob(private val context: Context, workerParams: WorkerParamet
?: return Result.failure()
tryToSetForeground()
/*
if (isAutoBackup) {
notifier.showBackupProgress() // Remove when tryToSetForeground is "fixed"
} else {
// FIXME: tryToSetForeground keep causing auto backup to fail
tryToSetForeground()
}
*/
val options = inputData.getBooleanArray(BACKUP_FLAGS_KEY)?.let { BackupOptions.fromBooleanArray(it) }
?: BackupOptions()