@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.
@@ -391,7 +391,7 @@ var getInlineMeta = (el, href, author, permlink, communityTag) => {
391
391
  if (communityTag) {
392
392
  expectedDisplays.add(`${communityTag.toLowerCase()}/${normalizedTarget}`);
393
393
  }
394
- const sophisticatedMatch = normalizedDisplay === normalizedTarget || communityTag && normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}`;
394
+ const sophisticatedMatch = normalizedDisplay === normalizedTarget || (communityTag ? normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}` : false);
395
395
  return {
396
396
  textMatches,
397
397
  titleMatches,