(showToastCancel = false)
| 4768 | } |
| 4769 | |
| 4770 | function clearNonZipQueue(showToastCancel = false) { |
| 4771 | window.__nonZipDownloadQueue = []; |
| 4772 | hideNonZipPanel(); |
| 4773 | if (showToastCancel) { |
| 4774 | showToast( |
| 4775 | t('nonzip_queue_cleared') || 'Download queue cleared.', |
| 4776 | 'info' |
| 4777 | ); |
| 4778 | } |
| 4779 | } |
| 4780 | |
| 4781 | function triggerNextNonZipDownload() { |
| 4782 | const q = window.__nonZipDownloadQueue || []; |
no test coverage detected