Updated display when installing a new plugin

This commit is contained in:
2023-07-16 00:18:27 +03:00
parent 730b628fe3
commit ac512e3a27
3 changed files with 14 additions and 5 deletions

View File

@@ -124,7 +124,7 @@ public class PluginsManager
for (var i = 0; i < len; i++)
{
var contents = lines[i].Split(',');
if (contents[0] == name)
if (contents[0].ToLowerInvariant() == name.ToLowerInvariant())
{
if (contents.Length == 6)
return new[] { contents[2], contents[3], contents[5] };