Upgrade EntityFrameworkCore.BootKit.

This commit is contained in:
Haiping Chen 2024-06-17 20:04:05 -05:00
parent 403b0ad3e7
commit 50743623bf
2 changed files with 4 additions and 3 deletions

View file

@ -160,7 +160,7 @@
<ItemGroup>
<PackageReference Include="Aspects.Cache" Version="2.0.4" />
<PackageReference Include="EntityFrameworkCore.BootKit" Version="8.4.1" />
<PackageReference Include="EntityFrameworkCore.BootKit" Version="8.4.2" />
<PackageReference Include="Fluid.Core" Version="2.8.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Nanoid" Version="3.0.0" />

View file

@ -1,4 +1,4 @@
using System.Xml.Linq;
using System.Web;
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
@ -88,7 +88,8 @@ public partial class PlaywrightWebDriver
}*/
var html = await locator.InnerHTMLAsync();
result.Body = html;
// fix if html has &
result.Body = HttpUtility.HtmlDecode(html);
result.IsSuccess = true;
}
else if (count > 1)