Skip to content

Commit

Permalink
fix: 想法导出出错的问题 #109
Browse files Browse the repository at this point in the history
  • Loading branch information
Higurashi-kagome committed Sep 18, 2023
1 parent a0a56c4 commit 5ae1e24
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker/worker-popup-process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export async function getMyThought() {
for (let i = 0; i < data.reviews.length; i++) {
const item = data.reviews[i]
// 处理有书评的情况
if (item.review.chapterUid !== undefined && item.review.chapterUid !== chapterUid) {
if (item.review.chapterUid !== undefined && item.review.chapterUid === chapterUid) {
// 找到指定章节的想法
let abstract = item.review.abstract
// 替换想法前后空字符
Expand Down
Binary file modified wereader.zip
Binary file not shown.

0 comments on commit 5ae1e24

Please sign in to comment.