hof 21.0.15-axios-beta → 21.0.17-axios-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/model/index.js +3 -0
- package/package.json +1 -1
package/model/index.js
CHANGED
@@ -101,6 +101,9 @@ module.exports = class Model extends EventEmitter {
|
|
101
101
|
this.emit('sync', originalSettings);
|
102
102
|
|
103
103
|
const promise = Promise.resolve().then(() => this.auth()).then(authData => {
|
104
|
+
console.log("@@@@@@@@@@@@@@@@")
|
105
|
+
console.log(authData)
|
106
|
+
console.log("@@@@@@@@@@@@@@@@")
|
104
107
|
let authVal = authData;
|
105
108
|
if (typeof authVal === 'string') {
|
106
109
|
const auth = authVal.split(':');
|