diff --git a/lib/domain-records.js b/lib/domain-records.js index 4fce2fe..3d76524 100644 --- a/lib/domain-records.js +++ b/lib/domain-records.js @@ -72,7 +72,7 @@ export default class DomainRecords extends Now { if (res.status === 400) { return bail(new Error(body.error ? body.error.message : 'Unknown error')) } else if (res.status === 403) { - const err = new Error(`Not authorized to access domain ${name}`) + const err = new Error(`Not authorized to access the domain "${name}"`) err.userError = true return bail(err) } else if (res.status === 404) {