Revert change of all Url types on IEmbed to string (#724)

This commit is contained in:
Christopher F
2017-06-29 16:38:05 -04:00
committed by RogueException
parent 1ce1c019b3
commit 7837c4862c
16 changed files with 92 additions and 44 deletions

View File

@@ -7,9 +7,9 @@ namespace Discord.API
internal class EmbedImage
{
[JsonProperty("url")]
public Uri Url { get; set; }
public string Url { get; set; }
[JsonProperty("proxy_url")]
public Uri ProxyUrl { get; set; }
public string ProxyUrl { get; set; }
[JsonProperty("height")]
public Optional<int> Height { get; set; }
[JsonProperty("width")]