Исправление ошибки в товаре + отключение отправки уведомлений при неаутентифицированной сессии

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2021-10-08 16:33:38 +10:00
parent 6bab42ac33
commit a235ed25ac
2 changed files with 9 additions and 3 deletions

View File

@ -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 [];
} }
} }

View File

@ -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) {
// Инициализация // Инициализация