Skip to content

Commit

Permalink
fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
jrainville committed Jan 10, 2025
1 parent 7d095bc commit 779c488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modules/onboarding/module.nim
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ method onNodeLogin*[T](self: Module[T], error: string, account: AccountDto, sett

self.controller.setLoggedInAccount(account)

if self.localPairingStatus.installation.id != "":
if self.localPairingStatus != nil and self.localPairingStatus.installation != nil and self.localPairingStatus.installation.id != "":
# We tried to login by pairing, so finilize the process
self.controller.finishPairingThroughSeedPhraseProcess(self.localPairingStatus.installation.id)

Expand Down

0 comments on commit 779c488

Please sign in to comment.