From efaca5ca2c32f673b96b7d36fc6433d9476700a5 Mon Sep 17 00:00:00 2001 From: Sipachev Igor Date: Thu, 24 Mar 2022 13:17:48 +0700 Subject: [PATCH] =?UTF-8?q?=D0=B2=D0=B5=D1=80=D0=BD=D1=83=D0=BB=20=D0=B8?= =?UTF-8?q?=D0=BD=D1=82=D0=B5=D1=80=D0=B2=D0=B0=D0=BB=20=D0=B3=D0=BE=D0=B4?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=B4=D0=BB=D1=8F=20=D0=BF=D0=B5=D1=80=D1=81?= =?UTF-8?q?=D0=BE=D0=BD=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0,=20=D1=87=D1=82=D0=BE=D0=B1=D1=8B=20=D1=87?= =?UTF-8?q?=D0=B0=D1=89=D0=B5=20=D0=B2=D1=8B=D0=BF=D0=B0=D0=B4=D0=B0=D0=BB?= =?UTF-8?q?=D0=B8=20=D0=BD=D0=BE=D1=80=D0=BC=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B?= =?UTF-8?q?=D0=B5=20=D0=BA=D0=BE=D0=B4=D0=B0=20=D0=BF=D0=BE=20=D0=BA=D0=BE?= =?UTF-8?q?=D1=82=D0=BE=D1=80=D1=8B=D0=BC=20=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE?= =?UTF-8?q?=20=D0=BF=D0=BE=D0=BB=D1=83=D1=87=D0=B8=D1=82=D1=8C=20=D0=BA?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=D0=B8=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- popup/src/classes/Service/Generators/PersonalIdGenerator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/popup/src/classes/Service/Generators/PersonalIdGenerator.ts b/popup/src/classes/Service/Generators/PersonalIdGenerator.ts index 9a6208c..de45432 100644 --- a/popup/src/classes/Service/Generators/PersonalIdGenerator.ts +++ b/popup/src/classes/Service/Generators/PersonalIdGenerator.ts @@ -23,7 +23,7 @@ export class PersonalIdGenerator { grabFullYear (year: bigint | null): bigint { if (!year) { const e = (new Date()).getFullYear() - year = BigInt(randomGenerator.generate(e - 5, e - 55)) + year = BigInt(randomGenerator.generate(e - 25, e - 55)) } return year }