Fixed .config searches followedStreams.maxCount. Version upped to 4.3.20

This commit is contained in:
Kwoth
2024-01-20 15:06:45 +00:00
parent b0ac35b82e
commit a7e1e8a982
3 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -30,7 +30,7 @@ public class SearchesConfigService : ConfigServiceBase<SearchesConfig>
AddParsedProp("followedStreams.maxCount",
sc => sc.FollowedStreams.MaxCount,
ConfigParsers.InsensitiveEnum,
int.TryParse,
ConfigPrinters.ToString);
Migrate();

View File

@@ -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";