Fixed a few non-optional RequestOptions

This commit is contained in:
RogueException
2016-10-06 03:44:09 -03:00
parent 8c5990d575
commit 6c77914162
4 changed files with 6 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ namespace Discord.Rest
Content = model.Content.Value;
}
public async Task UpdateAsync(RequestOptions options)
public async Task UpdateAsync(RequestOptions options = null)
{
var model = await Discord.ApiClient.GetChannelMessageAsync(ChannelId, Id, options).ConfigureAwait(false);
Update(model);