Use short URL for sharing videos

This commit is contained in:
Omar Roth 2019-06-05 11:10:23 -05:00
parent 8ba45808be
commit 8521f04087
No known key found for this signature in database
GPG key ID: B8254FB7EC3D37F2
2 changed files with 3 additions and 2 deletions

View file

@ -25,12 +25,13 @@ if (player_data.aspect_ratio) {
var embed_url = new URL(location);
embed_url.searchParams.delete('v');
short_url = location.origin + '/' + video_data.id + embed_url.search;
embed_url = location.origin + '/embed/' + video_data.id + embed_url.search;
var shareOptions = {
socials: ["fbFeed", "tw", "reddit", "email"],
url: window.location.href,
url: short_url,
title: player_data.title,
description: player_data.description,
image: player_data.thumbnail,