File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39226,7 +39226,7 @@ async function run() {
39226
39226
if (content == fullReviewComment) {
39227
39227
// Get the content of the pull request
39228
39228
if (!code) {
39229
- const response = await axios.get(issue.pull_request.diff_url, configWithProxy());
39229
+ const response = await axios.get(issue.pull_request.diff_url, configWithProxy({} ));
39230
39230
code = response.data;
39231
39231
}
39232
39232
@@ -39240,7 +39240,7 @@ async function run() {
39240
39240
if (programmingLanguage == 'auto') {
39241
39241
// Get the content of the pull request
39242
39242
if (!code) {
39243
- const response = await axios.get(issue.pull_request.diff_url, configWithProxy());
39243
+ const response = await axios.get(issue.pull_request.diff_url, configWithProxy({} ));
39244
39244
code = response.data;
39245
39245
}
39246
39246
const detectedLanguage = detect(code);
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ async function run() {
40
40
if ( content == fullReviewComment ) {
41
41
// Get the content of the pull request
42
42
if ( ! code ) {
43
- const response = await axios . get ( issue . pull_request . diff_url , configWithProxy ( ) ) ;
43
+ const response = await axios . get ( issue . pull_request . diff_url , configWithProxy ( { } ) ) ;
44
44
code = response . data ;
45
45
}
46
46
@@ -54,7 +54,7 @@ async function run() {
54
54
if ( programmingLanguage == 'auto' ) {
55
55
// Get the content of the pull request
56
56
if ( ! code ) {
57
- const response = await axios . get ( issue . pull_request . diff_url , configWithProxy ( ) ) ;
57
+ const response = await axios . get ( issue . pull_request . diff_url , configWithProxy ( { } ) ) ;
58
58
code = response . data ;
59
59
}
60
60
const detectedLanguage = detect ( code ) ;
You can’t perform that action at this time.
0 commit comments