Fix detekt issue
This commit is contained in:
parent
75feaa7ee7
commit
33c7c75550
1 changed files with 5 additions and 3 deletions
|
|
@ -51,16 +51,18 @@ class RustLinkMobileHandler(
|
|||
)
|
||||
// We emit Done in case the progress listener was deallocated before generate() sent the Done
|
||||
_linkMobileStep.emit(LinkMobileStep.Done)
|
||||
} catch (e: HumanQrGrantLoginException) {
|
||||
} catch (e: HumanQrGrantLoginException.NotFound) {
|
||||
Timber.tag(tag.value).w(e, "Error during QR login grant")
|
||||
// Catch timeout here?
|
||||
if (_linkMobileStep.value is LinkMobileStep.QrReady
|
||||
&& e is HumanQrGrantLoginException.NotFound) {
|
||||
if (_linkMobileStep.value is LinkMobileStep.QrReady) {
|
||||
Timber.tag(tag.value).d("Emit QrRotating due to HumanQrGrantLoginException.NotFound")
|
||||
_linkMobileStep.emit(LinkMobileStep.QrRotating)
|
||||
} else {
|
||||
_linkMobileStep.emit(LinkMobileStep.Error(e.map()))
|
||||
}
|
||||
} catch (e: HumanQrGrantLoginException) {
|
||||
Timber.tag(tag.value).w(e, "Error during QR login grant")
|
||||
_linkMobileStep.emit(LinkMobileStep.Error(e.map()))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue