File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
android/app/src/main/kotlin/com/yubico/authenticator Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,6 @@ class MainActivity : FlutterFragmentActivity() {
278278 deviceManager.setDeviceInfo(deviceInfo)
279279
280280 if (deviceInfo == null ) {
281- logger.debug(" Device info is null" )
282281 return
283282 }
284283
Original file line number Diff line number Diff line change @@ -135,12 +135,10 @@ class OathManager(
135135
136136 refreshJob = coroutineScope.launch {
137137 val delayMs = earliest - now
138- logger.debug(" XXX Will execute refresh in {}ms" , delayMs)
138+ logger.debug(" Will execute refresh in {}ms" , delayMs)
139139 if (delayMs > 0 ) {
140140 delay(delayMs)
141141 }
142- logger.debug(" XXX {}ms later will refresh!" , delayMs)
143- ensureActive()
144142 val currentState = lifecycleOwner.lifecycle.currentState
145143 if (currentState.isAtLeast(Lifecycle .State .STARTED )) {
146144 requestRefresh()
You can’t perform that action at this time.
0 commit comments