Add backstop for ensuring attachment archive jobs are enqueued.

This commit is contained in:
Greyson Parrelli
2025-09-02 19:04:01 -04:00
parent 3b715bc461
commit 71dd1d9d8b
4 changed files with 35 additions and 0 deletions

View File

@@ -164,6 +164,10 @@ class RemoteBackupsSettingsViewModel : ViewModel() {
}
}
}
viewModelScope.launch(Dispatchers.IO) {
BackupRepository.maybeFixAnyDanglingAttachmentUploads()
}
}
fun setCanBackUpUsingCellular(canBackUpUsingCellular: Boolean) {