Skip to content

Commit

Permalink
Fix codefactor issue in mwoffliner.lib.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimKovalenkoSNF committed Oct 25, 2023
1 parent 8a2c016 commit 9d5de01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mwoffliner.lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ async function execute(argv: any) {
}

async function fetchArticleDetail(articleId: string) {
return await articleDetailXId.get(articleId)
return articleDetailXId.get(articleId)

Check warning on line 611 in src/mwoffliner.lib.ts

View check run for this annotation

Codecov / codecov/patch

src/mwoffliner.lib.ts#L611

Added line #L611 was not covered by tests
}

async function updateArticleThumbnail(articleDetail: any, articleId: string) {
Expand Down

0 comments on commit 9d5de01

Please sign in to comment.