We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5404b10 commit c56c663Copy full SHA for c56c663
src/main/core/software/Installer.js
@@ -37,7 +37,7 @@ export default class Installer extends EventEmitter {
37
this.fileName = this.getFileName()
38
this.filePath = Path.Join(this.getDownloadsPath(), this.fileName)
39
this.tempFilePath = `${this.filePath}.dl`
40
- this.downloader = new Downloader(this.getDownloadUrl(), this.tempFilePath,{timeout:3})
+ this.downloader = new Downloader(this.getDownloadUrl(), this.tempFilePath)
41
42
if (!await DirUtil.Exists(GetPath.getDownloadsDir())) await DirUtil.Create(GetPath.getDownloadsDir())
43
if (await FileUtil.Exists(this.filePath)) await FileUtil.Delete(this.filePath)
0 commit comments