From d3da0682a16a772e752420051bed7da84e6297f7 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 14 Apr 2025 11:07:30 +0200 Subject: [PATCH] Update message --- .../IdentityServer/RequestValidators/BaseRequestValidator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Identity/IdentityServer/RequestValidators/BaseRequestValidator.cs b/src/Identity/IdentityServer/RequestValidators/BaseRequestValidator.cs index 88691fa8f7..c9da7f7510 100644 --- a/src/Identity/IdentityServer/RequestValidators/BaseRequestValidator.cs +++ b/src/Identity/IdentityServer/RequestValidators/BaseRequestValidator.cs @@ -203,7 +203,7 @@ public abstract class BaseRequestValidator where T : class protected async Task FailAuthForLegacyUserAsync(User user, T context) { await BuildErrorResultAsync( - $"Encryption key migration is required. Please log in to the web vault at {_globalSettings.BaseServiceUri.VaultWithHash}", + $"Legacy encryption without a userkey is no longer supported. To recover your account, please contact support", false, context, user); }