diff --git a/app/javascript/mastodon/features/about/index.jsx b/app/javascript/mastodon/features/about/index.jsx index 0ae76e46131b5d..ffc693e7ecb14e 100644 --- a/app/javascript/mastodon/features/about/index.jsx +++ b/app/javascript/mastodon/features/about/index.jsx @@ -162,6 +162,9 @@ class About extends PureComponent { const isFullTextSearch = server.getIn(['configuration', 'search', 'enabled']); + const email = server.getIn(['contact', 'email']) || ''; + const emailLink = email.startsWith('https://') ? email : `mailto:${email}`; + return (
@@ -183,7 +186,7 @@ class About extends PureComponent {

- {isLoading ? : {server.getIn(['contact', 'email'])}} + {isLoading ? : {server.getIn(['contact', 'email'])}}