mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-30 05:29:25 +02:00
fix(ZimService): cleanup unused variable
This commit is contained in:
parent
098979dd02
commit
e3257d1408
|
|
@ -168,7 +168,7 @@ export class ZimService {
|
|||
allowedMimeTypes: ZIM_MIME_TYPES,
|
||||
timeout: 30000,
|
||||
forceNew: true,
|
||||
onComplete: (url, filepath) => this._downloadRemoteSuccessCallback([url], filepath),
|
||||
onComplete: (url) => this._downloadRemoteSuccessCallback([url]),
|
||||
})
|
||||
|
||||
return filename
|
||||
|
|
@ -216,15 +216,15 @@ export class ZimService {
|
|||
allowedMimeTypes: ZIM_MIME_TYPES,
|
||||
timeout: 30000,
|
||||
forceNew: true,
|
||||
onComplete: (url, filepath) =>
|
||||
this._downloadRemoteSuccessCallback([url], filepath, isLastDownload),
|
||||
onComplete: (url) =>
|
||||
this._downloadRemoteSuccessCallback([url], isLastDownload),
|
||||
})
|
||||
}
|
||||
|
||||
return downloadFilenames.length > 0 ? downloadFilenames : null
|
||||
}
|
||||
|
||||
async _downloadRemoteSuccessCallback(urls: string[], filepath: string, restart = true) {
|
||||
async _downloadRemoteSuccessCallback(urls: string[], restart = true) {
|
||||
// Restart KIWIX container to pick up new ZIM file
|
||||
if (restart) {
|
||||
await this.dockerService
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user