We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d3217 commit 5b1e2fdCopy full SHA for 5b1e2fd
src/Neo.CLI/CLI/MainService.Plugins.cs
@@ -93,7 +93,7 @@ private static async Task<Stream> DownloadPluginAsync(string pluginName, Version
93
var jsonRelease = json.AsArray()
94
.FirstOrDefault(s =>
95
s?["tag_name"]?.GetValue<string>() == pluginVersionString &&
96
- s["prerelease"]?.GetValue<bool>() == prerelease);
+ s?["prerelease"]?.GetValue<bool>() == prerelease);
97
98
if (jsonRelease == null)
99
{
0 commit comments