diff --git a/CHANGELOG.md b/CHANGELOG.md index d25f93372..f3641d402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. ## Unreleased +## [4.2.8] - 24.06.2022 + +### Fixed + +- `.timely` should be fixed + ## [4.2.7] - 24.06.2022 ### Changed diff --git a/src/NadekoBot/Modules/Gambling/GamblingService.cs b/src/NadekoBot/Modules/Gambling/GamblingService.cs index f052a1d85..37f06f157 100644 --- a/src/NadekoBot/Modules/Gambling/GamblingService.cs +++ b/src/NadekoBot/Modules/Gambling/GamblingService.cs @@ -244,7 +244,7 @@ public class GamblingService : INService, IReadyExecutor } finally { - await _timelyLock.WaitAsync(); + _timelyLock.Release(); } } diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index ef02c0bdf..e51787f22 100644 --- a/src/NadekoBot/Services/Impl/StatsService.cs +++ b/src/NadekoBot/Services/Impl/StatsService.cs @@ -7,7 +7,7 @@ namespace NadekoBot.Services; public sealed class StatsService : IStatsService, IReadyExecutor, INService { - public const string BOT_VERSION = "4.2.7"; + public const string BOT_VERSION = "4.2.8"; public string Author => "Kwoth#2452";