Merge pull request #11 from Yamboy1/master

The lbry api changed...
This commit is contained in:
kodxana 2020-01-10 20:51:12 +01:00 committed by GitHub
commit 0fbde0c496
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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});
}
});