Upgrade EntityFrameworkCore.BootKit.
This commit is contained in:
parent
403b0ad3e7
commit
50743623bf
|
|
@ -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" />
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue