@exezt-/webamp 1.5.0-0x701 → 1.5.0-0x702
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10098,7 +10098,6 @@ class webamp_telegram_handler_WinampTelegramCustomHandler {
|
|
|
10098
10098
|
x.open('get', `https://cloud-api.yandex.net/v1/disk/public/resources?public_key=${link}`, true);
|
|
10099
10099
|
x.setRequestHeader('Accept', 'application/json');
|
|
10100
10100
|
x.setRequestHeader('Content-Type', 'application/json');
|
|
10101
|
-
x.setRequestHeader('Authorization', 'OAuth 0dc7925ebcf047a1b001c07d6bd5ac49');
|
|
10102
10101
|
x.send();
|
|
10103
10102
|
|
|
10104
10103
|
x.onload = async () => {
|
|
@@ -10113,10 +10112,10 @@ class webamp_telegram_handler_WinampTelegramCustomHandler {
|
|
|
10113
10112
|
if (item.size > 0x1400000) {
|
|
10114
10113
|
console.info(`File ${item.name} can't be loaded due oversize`);
|
|
10115
10114
|
} else {
|
|
10116
|
-
await fetch(item.file).then(response => response).then(resp => fetch(resp.url)).then(async response => {
|
|
10115
|
+
await fetch(`${item.file}&public_key=${item.public_key}`).then(response => response).then(resp => fetch(resp.url)).then(async response => {
|
|
10117
10116
|
if (response.status === 302) {
|
|
10118
|
-
return await fetch(response.headers.get(
|
|
10119
|
-
headers: [[
|
|
10117
|
+
return await fetch(response.headers.get("Location"), {
|
|
10118
|
+
headers: [["Authorization", "OAuth 0dc7925ebcf047a1b001c07d6bd5ac49"]]
|
|
10120
10119
|
});
|
|
10121
10120
|
} else {
|
|
10122
10121
|
return response;
|