[SEARCH-1702]

Introduced check on propValue
This commit is contained in:
eliaporciani
2020-01-20 16:47:52 +01:00
parent 7a2a33bc72
commit 2c37b1824d

View File

@@ -2508,7 +2508,7 @@ public class SolrInformationServer implements InformationServer
for (Locale locale : mlTextPropertyValue.getLocales()) for (Locale locale : mlTextPropertyValue.getLocales())
{ {
final String propValue = mlTextPropertyValue.getValue(locale); final String propValue = mlTextPropertyValue.getValue(locale);
if((locale == null)) if((locale == null) || propValue == null)
{ {
continue; continue;
} }