mirror of
https://github.com/zhaarey/apple-music-alac-atmos-downloader.git
synced 2026-01-15 14:22:53 -03:00
Fix port numbers for socket listeners in agent-arm64.js
This commit is contained in:
@@ -316,7 +316,7 @@ function initializeFridaFunctions(androidappmusic) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function startListeners() {
|
function startListeners() {
|
||||||
Socket.listen({ family: "ipv4", port: 23020 })
|
Socket.listen({ family: "ipv4", port: 20020})
|
||||||
.then(async (listener) => {
|
.then(async (listener) => {
|
||||||
while (true) {
|
while (true) {
|
||||||
await handleM3U8Connection(await listener.accept());
|
await handleM3U8Connection(await listener.accept());
|
||||||
@@ -324,7 +324,7 @@ function startListeners() {
|
|||||||
})
|
})
|
||||||
.catch(console.error);
|
.catch(console.error);
|
||||||
|
|
||||||
Socket.listen({ family: "ipv4", port: 13020 })
|
Socket.listen({ family: "ipv4", port: 10020})
|
||||||
.then(async (listener) => {
|
.then(async (listener) => {
|
||||||
while (true) {
|
while (true) {
|
||||||
await handleDecryptionConnection(await listener.accept());
|
await handleDecryptionConnection(await listener.accept());
|
||||||
|
|||||||
Reference in New Issue
Block a user