Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Fix inconsistency in plugin name #452

Merged
merged 11 commits into from
Dec 3, 2019
2 changes: 1 addition & 1 deletion neo-cli/Shell/MainService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ private bool OnUnInstallCommand(string[] args)

var pluginName = args[1];

if (!Plugin.Plugins.Any(u => u.Name == pluginName))
if (!Plugin.Plugins.Any(u => u.Name.Contains(pluginName)))
erikzhang marked this conversation as resolved.
Show resolved Hide resolved
{
Console.WriteLine("Plugin not found");
return true;
Expand Down