We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ceded7 commit 1df5740Copy full SHA for 1df5740
src/main/presenter/threadPresenter/searchManager.ts
@@ -225,15 +225,14 @@ export class SearchManager {
225
console.log('搜索结果加载完成')
226
227
const results = await this.extractSearchResults(searchWindow)
228
- console.log('搜索结果提取完成:', results)
+ console.log('搜索结果提取完成:', results?.length)
229
230
const enrichedResults = await this.enrichResults(results.slice(0, 5))
231
console.log('详细内容获取完成')
232
233
searchWindow
234
.loadFile(helperPage)
235
.then(() => {
236
- console.log('空白页加载完成')
237
this.destroySearchWindow(conversationId)
238
})
239
.catch((error) => {
0 commit comments