Fixed .poll and .pollend

This commit is contained in:
Master Kwoth
2017-10-24 18:50:51 +02:00
parent 08fc1b12f7
commit ffcaa594c9
3 changed files with 11 additions and 8 deletions

View File

@ -39,7 +39,7 @@ namespace NadekoBot.Modules.Games
private async Task InternalStartPoll(string arg)
{
if(await _service.StartPoll(Context.Channel.Id, Context.Message, arg) == false)
if(await _service.StartPoll(Context.Guild.Id, Context.Message, arg) == false)
await ReplyErrorLocalized("poll_already_running").ConfigureAwait(false);
}
@ -50,8 +50,8 @@ namespace NadekoBot.Modules.Games
{
var channel = (ITextChannel)Context.Channel;
_service.ActivePolls.TryRemove(channel.Guild.Id, out var poll);
await poll.StopPoll().ConfigureAwait(false);
if(_service.ActivePolls.TryRemove(channel.Guild.Id, out var poll))
await poll.StopPoll().ConfigureAwait(false);
}
}
}