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

Commit

Permalink
fix deps and unwrap usage
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Apr 18, 2020
1 parent 4fa6928 commit 50ddf02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Controllers/StorageProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public async Task<IActionResult> AddPackageAsync()
var package = default(RunePackage);
try
{
package = await RunePackage.Unwrap(memory, _cancellationToken);
package = await RunePackage.Unwrap(memory.ToArray(), _cancellationToken);
}
catch (Exception e)
{
Expand Down
4 changes: 2 additions & 2 deletions src/ruler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>1.4.25</Version>
<Version>1.4.26</Version>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<BumpPatch>true</BumpPatch>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ancient.ProjectSystem" Version="0.60.351.20" />
<PackageReference Include="Ancient.ProjectSystem" Version="0.60.356.20" />
<PackageReference Include="Flurl.Http" Version="2.4.2" />
<PackageReference Include="Google.Cloud.Firestore" Version="2.0.0-beta02" />
<PackageReference Include="Ivy.Versioning" Version="3.1.0">
Expand Down

0 comments on commit 50ddf02

Please sign in to comment.