mirror of
https://github.com/iv-org/invidious
synced 2024-11-03 03:40:35 +00:00
Optimize get_subscriptions AJAX
This commit is contained in:
parent
1477f99c2c
commit
485a3e29e7
@ -8,7 +8,7 @@ function get_subscriptions(callback, retries = 5) {
|
|||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.responseType = 'json';
|
xhr.responseType = 'json';
|
||||||
xhr.timeout = 10000;
|
xhr.timeout = 10000;
|
||||||
xhr.open('GET', '/api/v1/auth/subscriptions', true);
|
xhr.open('GET', '/api/v1/auth/subscriptions?fields=authorId', true);
|
||||||
|
|
||||||
xhr.onreadystatechange = function () {
|
xhr.onreadystatechange = function () {
|
||||||
if (xhr.readyState === 4) {
|
if (xhr.readyState === 4) {
|
||||||
|
Loading…
Reference in New Issue
Block a user