Fixed embedbuilder withimageurl and withurl (thx ene)

This commit is contained in:
Kwoth
2021-09-10 20:43:28 +02:00
parent 1785a27772
commit b6e03dcaed

View File

@@ -55,10 +55,10 @@ namespace NadekoBot.Services
=> Wrap(_embed.WithAuthor(name, iconUrl, url));
public IEmbedBuilder WithUrl(string url)
=> Wrap(_embed.WithAuthor(url));
=> Wrap(_embed.WithUrl(url));
public IEmbedBuilder WithImageUrl(string url)
=> Wrap(_embed.WithAuthor(url));
=> Wrap(_embed.WithImageUrl(url));
public IEmbedBuilder WithThumbnailUrl(string url)
=> Wrap(_embed.WithThumbnailUrl(url));