The lbry api changed...

This commit is contained in:
Yamboy1 2020-01-10 07:27:59 +13:00
parent ca2a94fb43
commit 84d16c1587

View file

@ -83,7 +83,7 @@ function validateVideo (id) {
let title = data.data.videos[id]
if (title != null) {
let url = "https://lbry.tv/" + title
let url = "https://lbry.tv/" + title.replace(/^lbry:\/\//, "").replace(/#/g, ":");
chrome.tabs.update({url: url});
}
});