From 0f20dc5885fcc56da679140a5849d852b6c654d9 Mon Sep 17 00:00:00 2001 From: kodxana Date: Sun, 20 Oct 2019 10:11:33 +0200 Subject: [PATCH] Fixed wrong URL --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index abbbc08..9f56e79 100644 --- a/background.js +++ b/background.js @@ -40,7 +40,7 @@ function validateVideo (id) { let title = data.data.videos[id] if (title != null) { - let url = "https://open.lbry.tv/" + title + let url = "https://open.lbry.com/" + title chrome.tabs.update({url: url}); } });