Исправление ошибки в товаре + отключение отправки уведомлений при неаутентифицированной сессии
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);
|
||||
|
||||
|
||||
return ;
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,14 +8,20 @@ function notification_last() {
|
|||
'last': 1
|
||||
},
|
||||
success: notification_response_success,
|
||||
error: notification_response_error
|
||||
error: notification_response_error,
|
||||
statusCode: {
|
||||
403: function () {
|
||||
// Отмена отправки запросов чтения всплывающих уведомлений
|
||||
clearInterval(notificationsInterval);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
// Проверка уведомлений
|
||||
setInterval(notification_last, 3000);
|
||||
let notificationsInterval = setInterval(notification_last, 3000);
|
||||
|
||||
function notification_popup_create(html, id) {
|
||||
// Инициализация
|
||||
|
|
Reference in New Issue