diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-12-20 19:43:57 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-12-20 19:43:57 +0100 |
| commit | 7f5a174dff98c6071fc292a41bba63d1435c2ddd (patch) | |
| tree | 8831a98e9e938420b5a4198f621a3dd57847b6b1 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | 137db45fc7a91d75d81023709b77277f34958ff0 (diff) | |
| parent | 06dfa2e687304874d4c8de8f7c95354b3d51225c (diff) | |
Merge branch 'master' into warn12
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; |
