@ecency/render-helper 2.4.10 → 2.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -388,7 +388,7 @@ var getInlineMeta = (el, href, author, permlink, communityTag) => {
388
388
  if (communityTag) {
389
389
  expectedDisplays.add(`${communityTag.toLowerCase()}/${normalizedTarget}`);
390
390
  }
391
- const sophisticatedMatch = normalizedDisplay === normalizedTarget || communityTag && normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}`;
391
+ const sophisticatedMatch = normalizedDisplay === normalizedTarget || (communityTag ? normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}` : false);
392
392
  return {
393
393
  textMatches,
394
394
  titleMatches,