From 3dd84fa6ff9232892b747a1371a9d3f7fe0c32d0 Mon Sep 17 00:00:00 2001 From: nzdev <834725+nzdev@users.noreply.github.com> Date: Sat, 6 Feb 2021 21:57:48 +1300 Subject: [PATCH] bugfix --- src/Umbraco.Core/Services/Implement/LocalizedTextService.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Umbraco.Core/Services/Implement/LocalizedTextService.cs b/src/Umbraco.Core/Services/Implement/LocalizedTextService.cs index 246481a48b..c10ae59907 100644 --- a/src/Umbraco.Core/Services/Implement/LocalizedTextService.cs +++ b/src/Umbraco.Core/Services/Implement/LocalizedTextService.cs @@ -265,6 +265,10 @@ namespace Umbraco.Core.Services.Implement { areaDictionary.TryGetValue(key, out found); } + if(found == null) + { + _noAreaDictionarySource[culture].TryGetValue(key, out found); + } }