(mode: string)
| 313 | } |
| 314 | |
| 315 | public setProgressMode(mode: string): void { |
| 316 | if (this.options) { |
| 317 | this.options.p = mode; |
| 318 | this.updateProgress = true; |
| 319 | } |
| 320 | if (!api.settings.get('malTags')) { |
| 321 | utils |
| 322 | .setEntrySettings(this.type, this.getCacheKey(), this.options, this._getTags()) |
| 323 | .then(() => this.initProgress()); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | public getProgressKey() { |
| 328 | let mode = this.getProgressMode(); |
nothing calls this directly
no test coverage detected