Merge pull request #11 from kodxana/bug_fix

API Bug Fix
This commit is contained in:
kodxana 2021-09-03 16:38:55 +02:00 committed by GitHub
commit 4e899ae347
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -29,7 +29,7 @@
"cpx": "^1.5.0", "cpx": "^1.5.0",
"cross-env": "^7.0.2", "cross-env": "^7.0.2",
"jest": "^26.5.3", "jest": "^26.5.3",
"lodash": "^4.17.20", "lodash": "^4.17.21",
"marked": "^2.0.0", "marked": "^2.0.0",
"node-forge": "^0.10.0", "node-forge": "^0.10.0",
"node-sass": "^4.14.1", "node-sass": "^4.14.1",

View file

@ -2,7 +2,7 @@ import chunk from 'lodash/chunk';
import groupBy from 'lodash/groupBy'; import groupBy from 'lodash/groupBy';
import pickBy from 'lodash/pickBy'; import pickBy from 'lodash/pickBy';
const LBRY_API_HOST = 'https://api.lbry.com'; const LBRY_API_HOST = 'https://api.odysee.com';
const QUERY_CHUNK_SIZE = 300; const QUERY_CHUNK_SIZE = 300;
interface YtResolverResponse { interface YtResolverResponse {

View file

@ -1,10 +1,11 @@
{ {
"name": "Watch on Odysee", "name": "Watch on Odysee",
"version": "1.7.3", "version": "1.7.4",
"permissions": [ "permissions": [
"https://www.youtube.com/", "https://www.youtube.com/",
"https://api.lbry.com/*", "https://api.odysee.com/*",
"https://lbry.tv/*", "https://lbry.tv/*",
"https://odysee.com/*",
"tabs", "tabs",
"storage" "storage"
], ],