mirror of https://github.com/tooot-app/app
Fix in some rare cases
This commit is contained in:
parent
1ee9b7d91d
commit
0941fb04e9
|
@ -4,7 +4,7 @@
|
|||
"native": "210317",
|
||||
"major": 1,
|
||||
"minor": 0,
|
||||
"patch": 0,
|
||||
"patch": 1,
|
||||
"expo": "40.0.0"
|
||||
},
|
||||
"description": "tooot app for Mastodon",
|
||||
|
|
|
@ -128,7 +128,8 @@ const renderNode = ({
|
|||
})
|
||||
}}
|
||||
>
|
||||
{content || (showFullLink ? href : domain[1])}
|
||||
{(content && content !== href && content) ||
|
||||
(showFullLink ? href : domain[1])}
|
||||
{!shouldBeTag ? (
|
||||
<Icon
|
||||
color={theme.blue}
|
||||
|
|
Loading…
Reference in New Issue