Skip to content

Commit

Permalink
Fix qrDecoder for Android
Browse files Browse the repository at this point in the history
  • Loading branch information
outspace committed Aug 30, 2023
1 parent 0eda42f commit 1c1a826
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/ui/qml/Pages2/PageSetupWizardConfigSource.qml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ It's okay as long as it's from someone you trust.")

clickedFunction: function() {
ImportController.startDecodingQr()
goToPage(PageEnum.PageSetupWizardQrReader)
if (Qt.platform.os === "ios") {
goToPage(PageEnum.PageSetupWizardQrReader)
}
}
}

Expand Down

0 comments on commit 1c1a826

Please sign in to comment.