Skip to content

Commit

Permalink
Поправить ссылку на ВК (#2750)
Browse files Browse the repository at this point in the history
  • Loading branch information
leotsarev authored Aug 14, 2024
1 parent d520469 commit 9e74981
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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", "Телеграм")
Expand Down

0 comments on commit 9e74981

Please sign in to comment.