Skip to content
This repository was archived by the owner on May 27, 2021. It is now read-only.

Commit 50ddf02

Browse files
committed
fix deps and unwrap usage
1 parent 4fa6928 commit 50ddf02

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Controllers/StorageProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public async Task<IActionResult> AddPackageAsync()
7171
var package = default(RunePackage);
7272
try
7373
{
74-
package = await RunePackage.Unwrap(memory, _cancellationToken);
74+
package = await RunePackage.Unwrap(memory.ToArray(), _cancellationToken);
7575
}
7676
catch (Exception e)
7777
{

src/ruler.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
5-
<Version>1.4.25</Version>
5+
<Version>1.4.26</Version>
66
</PropertyGroup>
77
<PropertyGroup Condition="$(Configuration) == 'Debug'">
88
<BumpPatch>true</BumpPatch>
99
</PropertyGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Ancient.ProjectSystem" Version="0.60.351.20" />
11+
<PackageReference Include="Ancient.ProjectSystem" Version="0.60.356.20" />
1212
<PackageReference Include="Flurl.Http" Version="2.4.2" />
1313
<PackageReference Include="Google.Cloud.Firestore" Version="2.0.0-beta02" />
1414
<PackageReference Include="Ivy.Versioning" Version="3.1.0">

0 commit comments

Comments
 (0)