diff --git a/CHANGELOG.md b/CHANGELOG.md index cd1040ce3..37ba26692 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o +## [4.3.20] - 20.01.2024 + +### Fixed +- Fixed `.config searches followedStreams.maxCount` not working ## [4.3.19] - 20.01.2024 @@ -36,7 +40,6 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. ### Removed - `.revimg` and `.revav` as google removed reverse image search -- ## [4.3.17] - 06.09.2023 diff --git a/src/NadekoBot/Modules/Searches/_Common/Config/SearchesConfigService.cs b/src/NadekoBot/Modules/Searches/_Common/Config/SearchesConfigService.cs index 87de6ec0e..378c46a65 100644 --- a/src/NadekoBot/Modules/Searches/_Common/Config/SearchesConfigService.cs +++ b/src/NadekoBot/Modules/Searches/_Common/Config/SearchesConfigService.cs @@ -30,7 +30,7 @@ public class SearchesConfigService : ConfigServiceBase AddParsedProp("followedStreams.maxCount", sc => sc.FollowedStreams.MaxCount, - ConfigParsers.InsensitiveEnum, + int.TryParse, ConfigPrinters.ToString); Migrate(); diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index 393d78cab..970a004fc 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.3.19"; + public const string BOT_VERSION = "4.3.20"; public string Author => "Kwoth#2452";