From bbbbd8137a02c086403368f06a006ecffd0de716 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Thu, 6 Jan 2022 09:59:03 -0600 Subject: [PATCH] Switch to low QR code error correction (cherry picked from commit fc3ebe40a799538f120698906e14c70b1472bb64) --- ts/components/QrCode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/QrCode.tsx b/ts/components/QrCode.tsx index 06959210d..7acc088b4 100644 --- a/ts/components/QrCode.tsx +++ b/ts/components/QrCode.tsx @@ -8,7 +8,7 @@ import { strictAssert } from '../util/assert'; import { useDevicePixelRatio } from '../hooks/useDevicePixelRatio'; const AUTODETECT_TYPE_NUMBER = 0; -const ERROR_CORRECTION_LEVEL = 'H'; +const ERROR_CORRECTION_LEVEL = 'L'; type PropsType = Readonly<{ 'aria-label': string;