diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-12-12 16:34:34 +0100 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-12-12 16:34:34 +0100 |
| commit | baadb504bbb0d8aa3de37e295afdcd40825d7a9d (patch) | |
| tree | 65aac3fa3478fd78db48b6c8d11b7f3cb0e3d521 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | 0bf8bfbb0cfd67b387a574148022f3c554ff5173 (diff) | |
| parent | 96a5dda9ffe714e170e97bb93d72d68ed55791bb (diff) | |
Merge branch 'master' into mediaencoding
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index 09a5a0dca..2705e0628 100644 --- a/Emby.Server.Implementations/Updates/InstallationManager.cs +++ b/Emby.Server.Implementations/Updates/InstallationManager.cs @@ -141,8 +141,7 @@ namespace Emby.Server.Implementations.Updates if (guid != Guid.Empty) { - var strGuid = guid.ToString("N", CultureInfo.InvariantCulture); - availablePackages = availablePackages.Where(x => x.guid.Equals(strGuid, StringComparison.OrdinalIgnoreCase)); + availablePackages = availablePackages.Where(x => Guid.Parse(x.guid) == guid); } return availablePackages; |
