Skip to content

Commit

Permalink
修复 #日榜 功能中的一处代码错误,修改版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
GardenHamster committed Aug 29, 2023
1 parent d802b02 commit 84713b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<RootNamespace>TheresaBot.GoCqHttp</RootNamespace>
<StartupObject></StartupObject>
<BaseOutputPath></BaseOutputPath>
<Version>0.10.2</Version>
<Version>0.10.3</Version>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<WarningLevel>3</WarningLevel>
Expand Down
2 changes: 1 addition & 1 deletion Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace TheresaBot.Main.Common
{
public static class BotConfig
{
public const string BotVersion = "0.10.2";
public const string BotVersion = "0.10.3";
public const string BotHomepage = "https://www.theresa3rd.cn";
public static GeneralConfig GeneralConfig = new GeneralConfig();
public static PixivConfig PixivConfig = new PixivConfig();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ private async Task ReplyRanking(GroupCommand command, PixivRankingMode rankingMo
{
dateStr = paramArr[0];
}
else
else if(paramArr.Length > 0)
{
idStr = paramArr[0];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>TheresaBot.MiraiHttpApi</RootNamespace>
<StartupObject></StartupObject>
<BaseOutputPath></BaseOutputPath>
<Version>0.10.2</Version>
<Version>0.10.3</Version>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<WarningLevel>3</WarningLevel>
Expand Down

0 comments on commit 84713b4

Please sign in to comment.