Add new checking for the display of pause button
This commit is contained in:
SK 2024-10-27 17:38:24 +09:00 committed by GitHub
parent 5e6115d5de
commit ba7ffc8051
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,5 +70,12 @@ class WorkRequestHelper {
isUploadWorkerRunning = false isUploadWorkerRunning = false
} }
} }
/**
* Provide a function for other class to get the flag isUploadWorkerRunning
*/
fun getisUploadWorkerRunning(): Boolean {
return isUploadWorkerRunning;
}
} }
} }