We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a3c42 commit f647311Copy full SHA for f647311
src/CoreApi/SwarmApi.cs
@@ -100,7 +100,7 @@ internal SwarmApi(IpfsClient ipfs)
100
101
TimeSpan ParseLatency(string latency)
102
{
103
- if (latency == "n/a")
+ if (latency == "n/a" || latency == "unknown")
104
105
return TimeSpan.Zero;
106
}
src/IpfsApi.csproj
@@ -28,7 +28,7 @@
28
</PropertyGroup>
29
30
<ItemGroup>
31
- <PackageReference Include="Ipfs.Core" Version="0.8.3" />
+ <PackageReference Include="Ipfs.Core" Version="0.10.0" />
32
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
33
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'netstandard14'" />
34
<PackageReference Include="System.Net.Http" Version="4.3.3" Condition="'$(TargetFramework)' == 'net45'" />
0 commit comments