mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 09:46:58 +01:00
Trying to match TravisCI Criteria
This commit is contained in:
parent
823d340d61
commit
42c037c6ac
@ -74,9 +74,9 @@ export default function baseRequest(url, { jsonBody, query, urlTemplateSpec, ...
|
||||
// If status is not a 2xx (based on Response.ok), assume it's an error
|
||||
// See https://developer.mozilla.org/en-US/docs/Web/API/GlobalFetch/fetch
|
||||
if (!(res && res.ok)) {
|
||||
let errorObject = {
|
||||
const errorObject = {
|
||||
message: 'HTTP Error: Requested page not reachable',
|
||||
status: '${res.status} ${res.statusText}',
|
||||
status: (res.status) + ' ' + (res.statusText),
|
||||
requestURI: res.url
|
||||
}
|
||||
throw errorObject
|
||||
|
Loading…
Reference in New Issue
Block a user