Skip to content

Commit

Permalink
Update Sticker.cs
Browse files Browse the repository at this point in the history
Почему-то animation_url был с типом bool, хотя это строка.
  • Loading branch information
ivanmem authored Jan 18, 2025
1 parent d12cb86 commit 0c54094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VkNet/Model/Attachments/Sticker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private long? StickerId
/// URL анимации стикера (для анимированных стикеров)
/// </summary>
[JsonProperty("animation_url")]
public bool AnimationUrl { get; set; }
public string AnimationUrl { get; set; }

/// <summary>
/// Тип, который описывает вариант формата ответа.
Expand All @@ -56,4 +56,4 @@ private long? StickerId
/// </summary>
[JsonProperty("is_allowed")]
public bool IsAllowed { get; set; }
}
}

0 comments on commit 0c54094

Please sign in to comment.