Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/464de13acf3be8e466e12c8087bef8623e9edba9 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use new static ZipFile functions

pull/10591/head
Bond_009 1 year ago
parent 5fa1b8ac3a
commit 464de13acf

@ -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);

Loading…
Cancel
Save