Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class EnrolmentRecordWorker @AssistedInject constructor(
override val tag: String = "EnrolmentRecordWorker"

override suspend fun doWork(): Result = withContext(dispatcher) {
showProgressNotification()
crashlyticsLog("Started")
try {
val instructionId =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ internal class FileUpSyncWorker @AssistedInject constructor(
override val tag: String = "FileUpSyncWorker"

override suspend fun doWork(): Result = withContext(dispatcher) {
showProgressNotification()
crashlyticsLog("Started")
try {
when {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class FirmwareFileUpdateWorker @AssistedInject constructor(
override val tag: String = "FirmwareFileUpdateWorker"

override suspend fun doWork(): Result = withContext(dispatcher) {
showProgressNotification()
crashlyticsLog("Started")
try {
firmwareRepository.updateStoredFirmwareFilesWithLatest()
Expand Down