Merge branch 'simple-req-typesafety' of github.com:ZirixCZ/Vesktop into simple-req-typesafety

This commit is contained in:
Michal Vaniš 2024-03-11 13:48:09 +01:00
commit a8253cef2e

View file

@ -54,6 +54,6 @@ export async function simpleGet(url: string, options: RequestOptions = {}) {
res.once("end", () => resolve(Buffer.concat(chunks)));
});
} catch (e) {
console.log(e);
console.error(e);
}
}