EmbedBuilder.WithImageUrl() now uses the value passed

This commit is contained in:
Nikey646
2016-12-01 12:04:32 +11:00
committed by GitHub
parent aceac76d1d
commit 11f507e26a

View File

@@ -52,7 +52,7 @@ namespace Discord
} }
public EmbedBuilder WithImageUrl(string imageUrl) public EmbedBuilder WithImageUrl(string imageUrl)
{ {
ImageUrl = ImageUrl; ImageUrl = imageUrl;
return this; return this;
} }
public EmbedBuilder WithCurrentTimestamp() public EmbedBuilder WithCurrentTimestamp()