diff --git a/Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj b/Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj
index 1b80f832..5895842b 100644
--- a/Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj
+++ b/Theresa3rd-Bot/TheresaBot.GoCqHttp/TheresaBot.GoCqHttp.csproj
@@ -5,7 +5,7 @@
TheresaBot.GoCqHttp
- 0.11.4
+ 0.11.5
disable
enable
3
diff --git a/Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs b/Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs
index c64b72fa..53ba05a9 100644
--- a/Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs
+++ b/Theresa3rd-Bot/TheresaBot.Main/Common/BotConfig.cs
@@ -6,7 +6,7 @@ namespace TheresaBot.Main.Common
{
public static class BotConfig
{
- public const string BotVersion = "0.11.4";
+ public const string BotVersion = "0.11.5";
public const string BotHomepage = "https://www.theresa3rd.cn";
public static BotInfos BotInfos = new BotInfos(0, "Bot");
public static List AcceptGroups = new();
diff --git a/Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs b/Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs
index 37fd4dd6..b2914f5f 100644
--- a/Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs
+++ b/Theresa3rd-Bot/TheresaBot.Main/Handler/SaucenaoHandler.cs
@@ -73,7 +73,7 @@ public async Task SearchSource(GroupQuoteCommand command)
DateTime startDateTime = DateTime.Now;
CoolingCache.SetHanding(command.GroupId, command.MemberId);//请求处理中
long quoteId = command.GetQuoteMessageId();
- List imgRecords = quoteId > 0 ? recordService.GetImageRecord(Session.PlatformType, quoteId, command.GroupId) : new();
+ List imgRecords = quoteId != 0 ? recordService.GetImageRecord(Session.PlatformType, quoteId, command.GroupId) : new();
List imgList = imgRecords.Select(o => o.HttpUrl).ToList();
if (imgList.Count == 0)
{
diff --git a/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj b/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj
index c78eaa0a..6af0370f 100644
--- a/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj
+++ b/Theresa3rd-Bot/TheresaBot.MiraiHttpApi/TheresaBot.MiraiHttpApi.csproj
@@ -6,7 +6,7 @@
TheresaBot.MiraiHttpApi
- 0.11.4
+ 0.11.5
disable
enable
3