mirror of
https://github.com/Alfresco/SearchServices.git
synced 2025-09-17 14:21:20 +00:00
[SEARCH-1702]
Introduced check on propValue
This commit is contained in:
@@ -2508,7 +2508,7 @@ public class SolrInformationServer implements InformationServer
|
||||
for (Locale locale : mlTextPropertyValue.getLocales())
|
||||
{
|
||||
final String propValue = mlTextPropertyValue.getValue(locale);
|
||||
if((locale == null))
|
||||
if((locale == null) || propValue == null)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user