Skip to content

Commit

Permalink
fix: 专栏获取为空 (#425)
Browse files Browse the repository at this point in the history
Fixed #425
  • Loading branch information
shanmiteko committed Nov 9, 2024
1 parent 890c86c commit 1d4e8ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/net/bili.js
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,10 @@ const bili_client = {
*/
getOneArticleByCv(cv) {
return get({
url: API.READ_CV.replace('{{cv}}', cv)
url: API.READ_CV.replace('{{cv}}', cv),
config: {
redirect: true
}
});
},
/**
Expand Down

0 comments on commit 1d4e8ea

Please sign in to comment.