Skip to content

Commit

Permalink
Fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapatwardhan committed Jan 17, 2024
1 parent 5b22f6e commit 7b9352a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/code/V3ServerAPICalls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -778,9 +778,7 @@ private Stream InstallHelper(string packageName, NuGetVersion version, out Error
return null;
}

pkgStream = content.ReadAsStreamAsync().Result;

return pkgStream;
return content.ReadAsStreamAsync().Result;
}

/// <summary>
Expand Down

0 comments on commit 7b9352a

Please sign in to comment.