From 061d212623712d8f1e4415b0a373568a97d9a65c Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 18 Jun 2026 11:32:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/TrialSiteUser/TrialConfigService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs index e05a6c237..0cfa7c110 100644 --- a/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs +++ b/IRaCIS.Core.Application/Service/TrialSiteUser/TrialConfigService.cs @@ -146,7 +146,7 @@ namespace IRaCIS.Core.Application return new GetLinkVerificationCodeIsEffectiveOutDto() { - IsEffective = inDto.LinkVerificationCode == (trial.LinkVerificationCode.IsNotNullOrEmpty() ? trial.ResearchProgramNo : trial.LinkVerificationCode) + IsEffective = inDto.LinkVerificationCode == (trial.LinkVerificationCode.IsNullOrEmpty() ? trial.ResearchProgramNo : trial.LinkVerificationCode) }; }