aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Localization/LocalizationManager.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-12-19 14:42:28 +0000
committerGitHub <noreply@github.com>2021-12-19 14:42:28 +0000
commit3f3295a5d666af40d0f768795e7790e0cc0efaed (patch)
treece4302acfb4a4d05bc3528d89925d93fdbb3da5f /Emby.Server.Implementations/Localization/LocalizationManager.cs
parentcd760943a9d554c560f35be2ee134969a224f92a (diff)
parent76c2775d8c9b6eebe9638ba3b388746cb968e922 (diff)
Merge pull request #7020 from cvium/static_anon
Diffstat (limited to 'Emby.Server.Implementations/Localization/LocalizationManager.cs')
-rw-r--r--Emby.Server.Implementations/Localization/LocalizationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Localization/LocalizationManager.cs b/Emby.Server.Implementations/Localization/LocalizationManager.cs
index 9cdbbb6a3..dbd70342a 100644
--- a/Emby.Server.Implementations/Localization/LocalizationManager.cs
+++ b/Emby.Server.Implementations/Localization/LocalizationManager.cs
@@ -310,7 +310,7 @@ namespace Emby.Server.Implementations.Localization
return _dictionaries.GetOrAdd(
culture,
- (key, localizationManager) => localizationManager.GetDictionary(Prefix, key, DefaultCulture + ".json").GetAwaiter().GetResult(),
+ static (key, localizationManager) => localizationManager.GetDictionary(Prefix, key, DefaultCulture + ".json").GetAwaiter().GetResult(),
this);
}