gologin 1.0.43 → 1.0.44
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/gologin.js +1 -1
- package/package.json +1 -1
package/gologin.js
CHANGED
|
@@ -373,7 +373,7 @@ class GoLogin {
|
|
|
373
373
|
let name = _.get(profile, 'name');
|
|
374
374
|
const chromeExtensions = _.get(profile, 'chromeExtensions');
|
|
375
375
|
|
|
376
|
-
if (chromeExtensions.length) {
|
|
376
|
+
if (chromeExtensions && chromeExtensions.length) {
|
|
377
377
|
const ExtensionsManagerInst = new ExtensionsManager();
|
|
378
378
|
ExtensionsManagerInst.apiUrl = API_URL;
|
|
379
379
|
await ExtensionsManagerInst.init()
|