mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
(function() {
|
|
const originFetch = fetch;
|
|
window.fetch = (...arg) => {
|
|
if (arg[0].indexOf('area_accessible') > -1) {
|
|
return new Promise(() => {
|
|
throw new Error();
|
|
});
|
|
} else {
|
|
return originFetch(...arg);
|
|
}
|
|
}
|
|
})();
|