Skip to content

Commit

Permalink
Add full domain name with protocol for Twitter tag
Browse files Browse the repository at this point in the history
Twitter requires a full URL, including protocol, not a relative path to
the card image.

Closes #633
  • Loading branch information
brianlove committed Jun 26, 2024
1 parent cf1c187 commit 319c3b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/gui-v2/src/components/MetaTagsWrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const MetaTagsWrapper = ({
<MetaTags
title={fullTitle}
description={description}
socialCardUrl={socialCard}
socialCardUrl={`https://parat.eto.tech${socialCard}`}
/>
</>
);
Expand Down

0 comments on commit 319c3b5

Please sign in to comment.