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", "Телеграм")