fix: Fixed a bug where plugins were not unzipping in .net framework

This commit is contained in:
Chris Cameron
2021-08-30 17:09:04 -04:00
parent baa00f7b00
commit 29013a2bf5

View File

@@ -299,7 +299,6 @@ namespace ICD.Common.Utils.IO.Compression
private Entry GetEntry(string fileName)
{
fileName = fileName.Replace("\\", "/").Trim().TrimStart('/');
var entry = Entries.FirstOrDefault(e => e.Name == fileName);
if (entry == null)