Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nb557 committed Aug 11, 2024
1 parent 6ea2a6d commit e92e247
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions online_mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -1150,12 +1150,16 @@
} else error();
};

var call_error = function call_error(a, c) {
error();
};

if (iframe_proxy) {
component.proxyCall3('GET', url, 5000, null, call_success, error);
component.proxyCall3('GET', url, 5000, null, call_success, call_error);
} else {
network.clear();
network.timeout(5000);
network["native"](prox + url, call_success, error, false, {
network["native"](prox + url, call_success, call_error, false, {
dataType: 'text'
});
}
Expand Down Expand Up @@ -2008,7 +2012,9 @@
call(element);
} else error();
} else error();
}, error, postdata, {
}, function (a, c) {
error();
}, postdata, {
withCredentials: logged_in,
headers: headers
});
Expand Down Expand Up @@ -11458,7 +11464,9 @@
});
} else decodeStream('');
} else error();
}, error, postdata, {
}, function (a, c) {
error();
}, postdata, {
headers: extract.headers
});
}
Expand Down Expand Up @@ -13121,7 +13129,9 @@
call(element);
} else error();
} else error();
}, error, postdata);
}, function (a, c) {
error();
}, postdata);
};

var player_url = link_origin + player[1];
Expand All @@ -13143,12 +13153,16 @@
last_player = player_url;
getLinks();
} else error();
}, error, false, {
}, function (a, c) {
error();
}, false, {
dataType: 'text'
});
} else getLinks();
} else error();
}, error, false, {
}, function (a, c) {
error();
}, false, {
dataType: 'text'
});
}
Expand Down

0 comments on commit e92e247

Please sign in to comment.