diff --git a/src/connector.js b/src/connector.js index faf0c7a..4a52d05 100644 --- a/src/connector.js +++ b/src/connector.js @@ -869,13 +869,9 @@ function updateResultListState( newState ) { else { author = result.raw.author; } - if( params.isContextSearch ) { - author = author.replace( ';', ', ' ); - } - else { - author = author.replace( ',', ';' ); - author = author.replace( ';' , '
  • ' ); - } + + author = author.replaceAll( ';' , '
  • ' ); + } } sectionNode.innerHTML = resultTemplateHTML