From a0028614f18cf265a5a244d81f7d89bf6efc74b6 Mon Sep 17 00:00:00 2001 From: alansley Date: Wed, 21 Aug 2024 11:14:32 +1000 Subject: [PATCH] Adjusted some comment phrasing --- .../main/java/org/thoughtcrime/securesms/ui/components/QR.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/ui/components/QR.kt b/app/src/main/java/org/thoughtcrime/securesms/ui/components/QR.kt index 92378c3b31..d0fd4ac3e9 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/ui/components/QR.kt +++ b/app/src/main/java/org/thoughtcrime/securesms/ui/components/QR.kt @@ -239,8 +239,8 @@ class QRCodeAnalyzer( try { val result: Result = qrCodeReader.decode(binaryBitmap) val resultTxt = result.text - // No need to close the image here - it'll always make it to the end, and calling - // `onBarcodeScanned` with a valid recovery code will stop calling this `analyze` method. + // No need to close the image here - it'll always make it to the end, and calling `onBarcodeScanned` + // with a valid contact / recovery phrase / community code will stop calling this `analyze` method. onBarcodeScanned(resultTxt) } catch (nfe: NotFoundException) { /* Hits if there is no QR code in the image */ }