diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/linkExternal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/dependencies/linkExternal.js b/src/content/dependencies/linkExternal.js index f0947cb7..afdfe6ef 100644 --- a/src/content/dependencies/linkExternal.js +++ b/src/content/dependencies/linkExternal.js @@ -33,7 +33,7 @@ export default { }); // Fall back to platform if nothing matched the desired style. - if (!formattedText && slots.style !== 'platform') { + if (html.isBlank(formattedText) && slots.style !== 'platform') { formattedText = language.formatExternalLink(data.url, { style: 'platform', |