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 d95c74e commit 69637b1Copy full SHA for 69637b1
src/ByteBard.AsyncAPI.Readers/Services/DefaultStreamLoader.cs
@@ -20,7 +20,7 @@ public Stream Load(Uri uri)
20
switch (uri.Scheme.ToLowerInvariant())
21
{
22
case "file":
23
- return File.OpenRead(uri.AbsolutePath);
+ return File.OpenRead(uri.LocalPath);
24
case "http":
25
case "https":
26
return HttpClient.GetStreamAsync(uri).GetAwaiter().GetResult();
0 commit comments