Skip to content
Snippets Groups Projects
Unverified Commit 05ff226e authored by mh-'s avatar mh- Committed by GitHub
Browse files

Update TimeVariables.kt (#819)


Renamed enIsEnabled to enIsDisabled and changed comment; did not change the logic.

Co-authored-by: default avatarJakob Möller <jakob.moeller@sap.com>
Co-authored-by: default avatarPhilipp Woessner <64482866+pwoessner@users.noreply.github.com>
parent b2d00d07
No related branches found
No related tags found
No related merge requests found
...@@ -186,17 +186,17 @@ object TimeVariables { ...@@ -186,17 +186,17 @@ object TimeVariables {
.getIntervals() .getIntervals()
.toMutableList() .toMutableList()
// by default the tracing is deactivated // by default the tracing is assumed to be activated
// if the API is reachable we set the value accordingly // if the API is reachable we set the value accordingly
var enIsEnabled = false var enIsDisabled = false
try { try {
enIsEnabled = !InternalExposureNotificationClient.asyncIsEnabled() enIsDisabled = !InternalExposureNotificationClient.asyncIsEnabled()
} catch (e: ApiException) { } catch (e: ApiException) {
e.report(ExceptionCategory.EXPOSURENOTIFICATION) e.report(ExceptionCategory.EXPOSURENOTIFICATION)
} }
if (enIsEnabled) { if (enIsDisabled) {
val current = System.currentTimeMillis() val current = System.currentTimeMillis()
var lastTimeTracingWasNotActivated = var lastTimeTracingWasNotActivated =
LocalData.lastNonActiveTracingTimestamp() ?: current LocalData.lastNonActiveTracingTimestamp() ?: current
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment