@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.
@@ -420,7 +420,7 @@ var getInlineMeta = (el, href, author, permlink, communityTag) => {
420
420
  if (communityTag) {
421
421
  expectedDisplays.add(`${communityTag.toLowerCase()}/${normalizedTarget}`);
422
422
  }
423
- const sophisticatedMatch = normalizedDisplay === normalizedTarget || communityTag && normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}`;
423
+ const sophisticatedMatch = normalizedDisplay === normalizedTarget || (communityTag ? normalizedDisplay === `${communityTag.toLowerCase()}/${normalizedTarget}` : false);
424
424
  return {
425
425
  textMatches,
426
426
  titleMatches,