mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed issue with adding to the end of string on 429 error
This commit is contained in:
@@ -1405,7 +1405,8 @@ function checkTimeout(guid, res, authorized, type, callback) {
|
|||||||
var retry_in = (date.getTime() - now.getTime()) / 1000;
|
var retry_in = (date.getTime() - now.getTime()) / 1000;
|
||||||
if(retry_in > 0) {
|
if(retry_in > 0) {
|
||||||
res.header({'Retry-After': retry_in});
|
res.header({'Retry-After': retry_in});
|
||||||
var thisError = error.tooMany;
|
var thisErrorString = JSON.stringify(error.tooMany);
|
||||||
|
var thisError = JSON.parse(thisErrorString);
|
||||||
thisError.error += " To get an API-key, visit https://zoff.me/api/apply.";
|
thisError.error += " To get an API-key, visit https://zoff.me/api/apply.";
|
||||||
res.status(429).send(thisError);
|
res.status(429).send(thisError);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user