Fixed ping and comment #3587

This commit is contained in:
Nicolas Gotchac
2016-11-23 18:08:53 +01:00
parent ab212fcdb5
commit bb6fe16478
4 changed files with 21 additions and 14 deletions

View File

@@ -102,12 +102,7 @@ export default class Ws extends JsonRpcBase {
}
_checkNodeUp () {
const url = process.env.PARITY_URL || window.location.host;
return fetch(
`http://${url}/api/ping`,
{ method: 'HEAD' }
)
return fetch('/', { method: 'HEAD' })
.then((r) => {
return r.status === 200;
}, () => {