diff --git a/src/ssn/getPatch.ts b/src/ssn/getPatch.ts index c05ef4a..32c9ccb 100644 --- a/src/ssn/getPatch.ts +++ b/src/ssn/getPatch.ts @@ -7,6 +7,7 @@ import readSsnFile from './readSsnFile'; export default async function getPatch(product: Product, from: number, to: number) { const solidPkg = await getSolidpkg(product, from, to); + console.log(solidPkg.files); const bufferArray = await Promise.all(solidPkg.files.map((file) => getUrlContents({ host: 'cdn-patch.swtor.com', path: `/patch/${product}/${product}_${from}to${to}/${file.name}` }))); const zipFile = bufferArray[bufferArray.length - 1];