Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #2810, full qualify the homepage og:image/etc images
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed May 18, 2017
1 parent ccb2397 commit 7ebe055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/pages/homepage/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,8 @@ class Head extends React.Component {
<meta name="twitter:title" content={ this.props.title } />
<meta name="twitter:description" content="Intuitive screenshots baked right into the browser. Capture, save and share screenshots as you browse the Web using Firefox." />
<meta name="twitter:card" content="summary_large_image" />
<meta property="og:image" content="/static/img/onboarding-1.png" />
<meta name="twitter:image" content="/static/img/onboarding-1.png" />
<meta property="og:image" content={ this.props.staticLinkWithHost("/static/img/onboarding-1.png") } />
<meta name="twitter:image" content={ this.props.staticLinkWithHost("/static/img/onboarding-1.png") } />
<style>{style}</style>
</reactruntime.HeadTemplate>
);
Expand Down

0 comments on commit 7ebe055

Please sign in to comment.