diff --git a/exmplate/script.js b/exmplate/script.js index 733eb88..d31dcf1 100644 --- a/exmplate/script.js +++ b/exmplate/script.js @@ -152,7 +152,13 @@ }, body: JSON.stringify(data) }) - .then(response => response.json()) + .then(response => { + if (response.status === 429) { + setError('Вы превысили количество попыток. Обновите каптчу.', button); + return + } + return response.json(); + }) .then(function (data) { if (typeof data.errors !== 'undefined') { let errorMessage = '';