When I use any method that has some kind of http request, I get the following error: ``` Type Error: decompressResponse is not a function ``` Here is my code: ```ts import { Installer } from "@xmcl/installer"; import path from "path"; (async () => { const temp = await Installer.getVersionList(); const app = remote.app; await Installer.install("client", temp.versions[0], path.join(app.getPath("userData"), "./game/")); })(); ``` **Edit** Auth module still seems to work because if I recall correctly, it uses `window.fetch` instead of `got`.