Use new static ZipFile functions

This commit is contained in:
Bond_009 2023-11-16 00:49:23 +01:00
parent 5fa1b8ac3a
commit 464de13acf
1 changed files with 1 additions and 2 deletions

View File

@ -551,8 +551,7 @@ namespace Emby.Server.Implementations.Updates
}
stream.Position = 0;
using var reader = new ZipArchive(stream);
reader.ExtractToDirectory(targetDir, true);
ZipFile.ExtractToDirectory(stream, targetDir, true);
// Ensure we create one or populate existing ones with missing data.
await _pluginManager.PopulateManifest(package.PackageInfo, package.Version, targetDir, status).ConfigureAwait(false);