Исправление ошибки в товаре + отключение отправки уведомлений при неаутентифицированной сессии
This commit is contained in:
parent
6bab42ac33
commit
a235ed25ac
|
@ -600,6 +600,6 @@ class Product extends Document
|
||||||
$analogs = ProductEdgeProduct::searchConnections(self::searchByCatn($catn)->_key, $limit);
|
$analogs = ProductEdgeProduct::searchConnections(self::searchByCatn($catn)->_key, $limit);
|
||||||
|
|
||||||
|
|
||||||
return ;
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,14 +8,20 @@ function notification_last() {
|
||||||
'last': 1
|
'last': 1
|
||||||
},
|
},
|
||||||
success: notification_response_success,
|
success: notification_response_success,
|
||||||
error: notification_response_error
|
error: notification_response_error,
|
||||||
|
statusCode: {
|
||||||
|
403: function () {
|
||||||
|
// Отмена отправки запросов чтения всплывающих уведомлений
|
||||||
|
clearInterval(notificationsInterval);
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Проверка уведомлений
|
// Проверка уведомлений
|
||||||
setInterval(notification_last, 3000);
|
let notificationsInterval = setInterval(notification_last, 3000);
|
||||||
|
|
||||||
function notification_popup_create(html, id) {
|
function notification_popup_create(html, id) {
|
||||||
// Инициализация
|
// Инициализация
|
||||||
|
|
Reference in New Issue