mirror of
https://github.com/umami-software/umami.git
synced 2026-02-17 11:05:36 +01:00
fix(api): inconsistent default message on domain name error
This commit is contained in:
parent
7288146649
commit
669ee55788
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ export default async (req, res) => {
|
|||
const { id, type, start_at, end_at, domain, url } = req.query;
|
||||
|
||||
if (domain && !DOMAIN_REGEX.test(domain)) {
|
||||
return badRequest(res, 'error.bad-domain\tInvalid domain name - please check settings');
|
||||
return badRequest(res, 'error.bad-domain\tInvalid domain name. Please check settings.');
|
||||
}
|
||||
|
||||
const websiteId = +id;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue