Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed May 28, 2022
1 parent 3027c70 commit 065d4aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const createRequest = (method, url, data, options) => {
} else if (options.cookie) {
headers['Cookie'] = options.cookie
}
console.log(options.cookie, headers['Cookie'])
// console.log(options.cookie, headers['Cookie'])
if (options.crypto === 'weapi') {
let csrfToken = (headers['Cookie'] || '').match(/_csrf=([^(;|$)]+)/)
data.csrf_token = csrfToken ? csrfToken[1] : ''
Expand Down

0 comments on commit 065d4aa

Please sign in to comment.