Browse Source

Domain should not be part of sentence

master
Leo Lamprecht 8 years ago
parent
commit
5a6d8481d6
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 2
      lib/domain-records.js

2
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) {

Loading…
Cancel
Save