Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisPalnitsky committed Apr 12, 2024
1 parent 75dbdaa commit 1e83bc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/server/middleware/importLimiters.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const createImportHandler = (ip = true) => {
};

await logViolation(req, res, type, errorMessage);
res.status(429).json({ message: 'Too many file upload requests. Try again later' });
res.status(429).json({ message: 'Too many conversation import requests. Try again later' });
};
};

Expand Down

0 comments on commit 1e83bc0

Please sign in to comment.