diff --git a/src/platforms/web/server.js b/src/platforms/web/server.js
index 3494190ac..18f2754f7 100644
--- a/src/platforms/web/server.js
+++ b/src/platforms/web/server.js
@@ -63,7 +63,9 @@ const defaultHead =
'\n' +
'\n' +
'\n' +
- '';
+ '';
+ '';
+
app.get('*', async (req, res) => {
let html = readFileSync(path.join(__dirname, '/index.html'), 'utf8');
@@ -87,7 +89,7 @@ app.get('*', async (req, res) => {
? truncateDescription(claim.description)
: `Watch ${title} on LBRY.tv`;
const claimLanguage = claim.language || 'en_US';
- const claimThumbnail = claim.thumbnail_url || '/og.png';
+ const claimThumbnail = claim.thumbnail_url || 'https://beta.lbry.tv/og.png';
const claimTitle =
claim.channel && !isChannel ? `${title} from ${claim.channel} on LBRY.tv` : `${title} on LBRY.tv`;
@@ -99,6 +101,7 @@ app.get('*', async (req, res) => {
if (claim.tags) {
head += ``;
}
+ head += ``;
head += ``;
head += ``;
head += ``;