diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue
index 1543e89c..18a4b075 100644
--- a/src/views/ContactQRScanShowView.vue
+++ b/src/views/ContactQRScanShowView.vue
@@ -80,7 +80,7 @@
@@ -706,6 +706,10 @@ export default class ContactQRScanShow extends Vue {
this.isMounted = true;
document.addEventListener("pause", this.handleAppPause);
document.addEventListener("resume", this.handleAppResume);
+ // Start scanning automatically when view is loaded, but only on web platform
+ if (!this.isNativePlatform) {
+ this.startScanning();
+ }
}
beforeDestroy() {