We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a2d5aa commit d633176Copy full SHA for d633176
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mobx-restful",
3
- "version": "1.0.0-rc.4",
+ "version": "1.0.0-rc.5",
4
"license": "LGPL-3.0",
5
"author": "[email protected]",
6
"description": "MobX SDK for RESTful API",
source/Downloader/HTTP.ts
@@ -10,9 +10,9 @@ export class HTTPDownloadTask extends DownloadTask {
10
});
11
12
constructor(path: string, name?: string) {
13
- super(name, path);
+ super(path, name);
14
15
- this.id = `http-download-task-${name}`;
+ this.id = `http-download-task-${this.name}`;
16
17
restore(this, this.id);
18
}
0 commit comments