We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f31952 commit c24a5a6Copy full SHA for c24a5a6
src/services/search/paper-search.service.ts
@@ -1,5 +1,4 @@
1
import { GoogleScholar, IPaperMetadata } from '@rpidanny/google-scholar/dist'
2
-import { CaptchaError } from '@rpidanny/odysseus'
3
import { Quill } from '@rpidanny/quill'
4
import { join } from 'path'
5
@@ -101,11 +100,7 @@ export class PaperSearchService {
101
100
102
return entity
103
} catch (error) {
104
- if (error instanceof CaptchaError) {
105
- this.logger?.debug(`Failed processing paper due to Captcha: ${paper.url}`)
106
- return
107
- }
108
- throw error
+ this.logger?.debug(`Failed processing paper ${paper.url}: ${(error as Error).message}`)
109
}
110
111
0 commit comments