|
|
@@ -78,7 +78,7 @@ function compareCookieStr(cookieStr1, cookieStr2) {
|
|
|
let retCode = 0;
|
|
|
for (let key in cookieDict1) {
|
|
|
if (!skipKeys.includes(key)) {
|
|
|
- if (cookieDict1[key] != cookieDict2[key]) {
|
|
|
+ if (cookieDict1[key] != void 0 && cookieDict2[key] != void 0 && cookieDict1[key] != cookieDict2[key]) {
|
|
|
magicJS.logger.info(`${key}`);
|
|
|
retCode = -1;
|
|
|
break;
|