if version name doesn't have /, then just use the full name

This commit is contained in:
Iuri Matias 2018-04-23 12:14:48 -04:00
parent 782044ef7c
commit 16909c7f1a
1 changed files with 3 additions and 0 deletions

View File

@ -222,6 +222,9 @@ class Engine {
if (err) {
return cb({name: "Ethereum node (version unknown)", status: 'on'});
}
if (version.indexOf("/") < 0) {
return cb({name: version, status: 'on'});
}
let nodeName = version.split("/")[0];
let versionNumber = version.split("/")[1].split("-")[0];
let name = nodeName + " " + versionNumber + " (Ethereum)";