Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xor1 committed Feb 14, 2024
1 parent 285c4ba commit dd63b22
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Common.Client/Common.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>0xor1.Common.Client</PackageId>
<Version>3.0.13</Version>
<Version>3.0.15</Version>
<Authors>Daniel Robinson</Authors>
<Company>Personal</Company>
<Product>Personal</Product>
Expand All @@ -18,7 +18,7 @@

<ItemGroup>
<PackageReference Include="DartSassBuilder" Version="1.0.0" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.13" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.0" />
Expand Down
4 changes: 2 additions & 2 deletions Common.Server/Common.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>0xor1.Common.Server</PackageId>
<Version>3.0.14</Version>
<Version>3.0.15</Version>
<Authors>Daniel Robinson</Authors>
<Company>Personal</Company>
<Product>Personal</Product>
Expand All @@ -17,7 +17,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Shared" Version="3.0.13" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="AWSSDK.S3" Version="3.7.300.2" />
<PackageReference Include="AWSSDK.SimpleEmail" Version="3.7.300.2" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
Expand Down
2 changes: 1 addition & 1 deletion Common.Shared/Common.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>0xor1.Common.Shared</PackageId>
<Version>3.0.13</Version>
<Version>3.0.15</Version>
<Authors>Daniel Robinson</Authors>
<Company>Personal</Company>
<Product>Personal</Product>
Expand Down
2 changes: 1 addition & 1 deletion Common.Shared/SetRes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static SetRes<T> FromLimit(List<T> set, int qryLimit)
{
if (set.Count == qryLimit)
{
set.RemoveAt(qryLimit);
set.RemoveAt(qryLimit - 1);
return new SetRes<T>(set, true);
}
return new SetRes<T>(set, false);
Expand Down

0 comments on commit dd63b22

Please sign in to comment.