From 9e749812624927754581992e53d87046ac2ea92c Mon Sep 17 00:00:00 2001 From: Leonid Tsarev Date: Wed, 14 Aug 2024 19:29:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D1=83=20=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=92=D0=9A=20(#2750)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UserProfile/UserLoginInfoViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JoinRpg.WebPortal.Models/UserProfile/UserLoginInfoViewModel.cs b/src/JoinRpg.WebPortal.Models/UserProfile/UserLoginInfoViewModel.cs index 0a419447f..f77d5e6f6 100644 --- a/src/JoinRpg.WebPortal.Models/UserProfile/UserLoginInfoViewModel.cs +++ b/src/JoinRpg.WebPortal.Models/UserProfile/UserLoginInfoViewModel.cs @@ -17,7 +17,7 @@ public abstract record ProviderDescViewModel(string ProviderId, string FriendlyN public record VkDescViewModel() : ProviderDescViewModel("Vkontakte", "ВК") { [return: NotNullIfNotNull(nameof(providerKey))] - public override Uri? GetProfileUri(string? providerKey) => providerKey is null ? null : new Uri($"https://vk.com/id{providerKey}"); + public override Uri? GetProfileUri(string? providerKey) => providerKey is null ? null : new Uri($"https://vk.com/{providerKey}"); } public record TelegramDescViewModel() : ProviderDescViewModel(ProviderId: "telegram", "Телеграм")