Skip to content

Commit

Permalink
Merge branch 'Sang/fix/android_export_seed'
Browse files Browse the repository at this point in the history
  • Loading branch information
ppupha committed Jan 3, 2025
2 parents 68b5ada + 010cc37 commit 82241bd
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,16 @@ class MainActivity : FlutterFragmentActivity() {
} catch (e: Exception) {
e.printStackTrace()
// No accounts found
result.success(emptyMap<String, List<String>>())
result.error("exportMnemonicForAllPersonaUUIDs error", e.message, e)
}
}
.addOnFailureListener { e ->
Log.e("MainActivity", e.message ?: "Blockstore retrieval error")
result.error("exportMnemonicForAllPersonaUUIDs error", e.message, e)
result.error(
"exportMnemonicForAllPersonaUUIDs Blockstore retrieval error",
e.message,
e
)
}
}
}
Expand Down

0 comments on commit 82241bd

Please sign in to comment.