Commit 5e9dfbc 1 parent 5fd93a3 commit 5e9dfbc Copy full SHA for 5e9dfbc
File tree 2 files changed +1
-4
lines changed
android/app/src/main/kotlin/com/yubico/authenticator
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,6 @@ class MainActivity : FlutterFragmentActivity() {
278
278
deviceManager.setDeviceInfo(deviceInfo)
279
279
280
280
if (deviceInfo == null ) {
281
- logger.debug(" Device info is null" )
282
281
return
283
282
}
284
283
Original file line number Diff line number Diff line change @@ -135,12 +135,10 @@ class OathManager(
135
135
136
136
refreshJob = coroutineScope.launch {
137
137
val delayMs = earliest - now
138
- logger.debug(" XXX Will execute refresh in {}ms" , delayMs)
138
+ logger.debug(" Will execute refresh in {}ms" , delayMs)
139
139
if (delayMs > 0 ) {
140
140
delay(delayMs)
141
141
}
142
- logger.debug(" XXX {}ms later will refresh!" , delayMs)
143
- ensureActive()
144
142
val currentState = lifecycleOwner.lifecycle.currentState
145
143
if (currentState.isAtLeast(Lifecycle .State .STARTED )) {
146
144
requestRefresh()
You can’t perform that action at this time.
0 commit comments