File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ const fetchQNetworkReplyErrorCodeListFromGitHub = async ( github ) => {
5252 path : 'src/network/access/qnetworkreply.h' ,
5353 ref : 'dev'
5454 } ) ;
55- const commitId = response . sha ;
55+ const commitId = response . data . sha ;
5656
57- const qNetworkReplyHeaderSource = decodeRepoContent ( response ) ;
57+ const qNetworkReplyHeaderSource = decodeRepoContent ( response . data ) ;
5858 const qNetworkReplyErrorCodes = extractQNetworkReplyErrorCodes ( qNetworkReplyHeaderSource ) ;
5959
6060 return { commitId, qNetworkReplyErrorCodes } ;
@@ -72,7 +72,6 @@ const fetchQNetworkReplyErrorCodeListFromQt = async () => {
7272
7373const decodeRepoContent = ( response ) => {
7474 try {
75- console . log ( response ) ;
7675 return Buffer . from ( response . content , response . encoding ) . toString ( 'utf-8' ) ;
7776 }
7877 catch ( e ) {
You can’t perform that action at this time.
0 commit comments