Merge remote-tracking branch 'refs/remotes/Kwoth/1.0' into 1.0-fearnlj01
This commit is contained in:
commit
a92bdca62a
@ -48,15 +48,21 @@ namespace NadekoBot.Modules.Administration
|
|||||||
|
|
||||||
t = new Timer(async (state) =>
|
t = new Timer(async (state) =>
|
||||||
{
|
{
|
||||||
var keys = UserPresenceUpdates.Keys.ToList();
|
try
|
||||||
|
|
||||||
await Task.WhenAll(keys.Select(key =>
|
|
||||||
{
|
{
|
||||||
List<string> messages;
|
var keys = UserPresenceUpdates.Keys.ToList();
|
||||||
if (UserPresenceUpdates.TryRemove(key, out messages))
|
|
||||||
try { return key.SendMessageAsync(string.Join(Environment.NewLine, messages)); } catch { } //502/403
|
await Task.WhenAll(keys.Select(async key =>
|
||||||
return Task.CompletedTask;
|
{
|
||||||
}));
|
List<string> messages;
|
||||||
|
if (UserPresenceUpdates.TryRemove(key, out messages))
|
||||||
|
try { await key.SendMessageAsync(string.Join(Environment.NewLine, messages)); } catch { }
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_log.Warn(ex);
|
||||||
|
}
|
||||||
}, null, TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(10));
|
}, null, TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(10));
|
||||||
|
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ namespace NadekoBot.Modules.Games
|
|||||||
{
|
{
|
||||||
var results = participants.GroupBy(kvp => kvp.Value)
|
var results = participants.GroupBy(kvp => kvp.Value)
|
||||||
.ToDictionary(x => x.Key, x => x.Sum(kvp => 1))
|
.ToDictionary(x => x.Key, x => x.Sum(kvp => 1))
|
||||||
.OrderBy(kvp => kvp.Value);
|
.OrderByDescending(kvp => kvp.Value);
|
||||||
|
|
||||||
var totalVotesCast = results.Sum(kvp => kvp.Value);
|
var totalVotesCast = results.Sum(kvp => kvp.Value);
|
||||||
if (totalVotesCast == 0)
|
if (totalVotesCast == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user