You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Requests are not working correctly because request options are not processed correctly. The offset is off by one, because second timeout parameter is not implemented here.
// line 177ff. in public-interface.jshelpers.processData(options.data,options.serializer,function(data){exec(onSuccess,onFail,'CordovaHttpPlugin',options.method,[url,data,options.serializer,headers,options.connectTimeout,options.readTimeout,options.followRedirect,options.responseType,reqId]);});// maps to following cordova proxy implementation line 154ff. in cordova-http-plugin.js vardata,serializer,headers,timeout,followRedirect,responseType,reqId;varurl=opts[0];if(withData){data=opts[1];serializer=opts[2];headers=opts[3];timeout=opts[4];// should be connectTimeoutfollowRedirect=opts[5];// following offsets are wrong because readTimeout is missing hereresponseType=opts[6];reqId=opts[7];}else{headers=opts[1];timeout=opts[2];// see abovefollowRedirect=opts[3];responseType=opts[4];reqId=opts[5];}
The text was updated successfully, but these errors were encountered:
Requests are not working correctly because request options are not processed correctly. The offset is off by one, because second timeout parameter is not implemented here.
The text was updated successfully, but these errors were encountered: