Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Commit

Permalink
Update dependencies (fixes #1)
Browse files Browse the repository at this point in the history
- DSharpPlus.* 4.4.0-nightly-01453
- Microsoft.EntityFrameworkCore.* 7.0.4
- NLog 5.1.2
- NLog.Extensions.Logging 5.2.2
- X10D.* 3.2.0-nightly-165
  • Loading branch information
oliverbooth committed Mar 26, 2023
1 parent ecaf1c0 commit d0826c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Cloak/Cloak.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.3.0"/>
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.3.0"/>
<PackageReference Include="DSharpPlus" Version="4.4.0-nightly-01453"/>
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.0-nightly-01453"/>
<PackageReference Include="Humanizer.Core" Version="2.14.1"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.3"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.4"/>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1"/>
<PackageReference Include="NLog" Version="5.1.1"/>
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1"/>
<PackageReference Include="X10D" Version="3.2.0-nightly.144"/>
<PackageReference Include="X10D.DSharpPlus" Version="3.2.0-nightly.144"/>
<PackageReference Include="X10D.Hosting" Version="3.2.0-nightly.144"/>
<PackageReference Include="NLog" Version="5.1.2"/>
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2"/>
<PackageReference Include="X10D" Version="3.2.0-nightly.165"/>
<PackageReference Include="X10D.DSharpPlus" Version="3.2.0-nightly.165"/>
<PackageReference Include="X10D.Hosting" Version="3.2.0-nightly.165"/>
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion Cloak/Interactivity/DiscordModal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ private Task OnModalSubmitted(DiscordClient sender, ModalSubmitEventArgs e)
return Task.CompletedTask;

_discordClient.ModalSubmitted -= OnModalSubmitted;
e.Handled = true;

IEnumerable<DiscordComponent> components = e.Interaction.Data.Components.SelectMany(c => c.Components);
IEnumerable<TextInputComponent> inputComponents = components.OfType<TextInputComponent>();
Expand Down

0 comments on commit d0826c2

Please sign in to comment.