From f21784ccb8b2a579df58128581d19905a7bb0d95 Mon Sep 17 00:00:00 2001 From: Matt Zabriskie Date: Thu, 23 Jun 2016 14:04:27 -0600 Subject: [PATCH] Removing restriction on withCredentials being overridden closes #343 --- lib/core/Axios.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/core/Axios.js b/lib/core/Axios.js index 14b51da..5857604 100644 --- a/lib/core/Axios.js +++ b/lib/core/Axios.js @@ -42,9 +42,6 @@ Axios.prototype.request = function request(config) { config.url = combineURLs(config.baseURL, config.url); } - // Don't allow overriding defaults.withCredentials - config.withCredentials = config.withCredentials || this.defaults.withCredentials; - // Transform request data config.data = transformData( config.data,