hof 21.0.16-axios-beta → 21.0.17-axios-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/model/index.js +7 -6
- package/package.json +1 -1
package/model/index.js
CHANGED
@@ -103,14 +103,15 @@ module.exports = class Model extends EventEmitter {
|
|
103
103
|
const promise = Promise.resolve().then(() => this.auth()).then(authData => {
|
104
104
|
console.log("@@@@@@@@@@@@@@@@")
|
105
105
|
console.log(authData)
|
106
|
-
console.log(typeof authData)
|
107
106
|
console.log("@@@@@@@@@@@@@@@@")
|
108
107
|
let authVal = authData;
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
108
|
+
if (typeof authVal === 'string') {
|
109
|
+
const auth = authVal.split(':');
|
110
|
+
authVal = {
|
111
|
+
username: auth.shift(),
|
112
|
+
password: auth.join(':')
|
113
|
+
};
|
114
|
+
}
|
114
115
|
if(authVal) {
|
115
116
|
settings.headers = Object.assign({}, settings.headers, {Authorization: `Bearer ${authVal.bearer}`});
|
116
117
|
}
|