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 9b84655 commit 2b8ef2aCopy full SHA for 2b8ef2a
src/commands/extract-images.ts
@@ -103,7 +103,8 @@ export const extractImages = async (
103
}
104
);
105
if (failedImages && failedImages.length > 0) {
106
- await window.showErrorMessage(
+ // eslint-disable-next-line @typescript-eslint/no-floating-promises
107
+ window.showErrorMessage(
108
`${failedImages.length}张图片提取失败\n${failedImages
109
.map(x => [x.symbol, extractor.errors.find(y => y[0] === x.symbol)?.[1] ?? ''].join(': '))
110
.join('\n')}`
0 commit comments