Fix plugin installation
This commit is contained in:
parent
e4d5e5bf91
commit
06d420f743
|
@ -1,6 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
@ -457,13 +458,17 @@ namespace Emby.Server.Implementations.Updates
|
||||||
var hash = ToHexString(md5.ComputeHash(stream));
|
var hash = ToHexString(md5.ComputeHash(stream));
|
||||||
if (!string.Equals(package.checksum, hash, StringComparison.OrdinalIgnoreCase))
|
if (!string.Equals(package.checksum, hash, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
_logger.LogDebug("{0}, {1}", package.checksum, hash);
|
_logger.LogError(
|
||||||
throw new InvalidDataException($"The checksums didn't match while installing {package.name}.");
|
"The checksums didn't match while installing {Package}, expected: {Expected}, got: {Received}",
|
||||||
|
package.name,
|
||||||
|
package.checksum,
|
||||||
|
hash);
|
||||||
|
throw new InvalidDataException("The checksum of the received data doesn't match.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Directory.Exists(targetDir))
|
if (Directory.Exists(targetDir))
|
||||||
{
|
{
|
||||||
Directory.Delete(targetDir);
|
Directory.Delete(targetDir, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
stream.Position = 0;
|
stream.Position = 0;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user