diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-04-01 15:59:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-01 15:59:13 +0300 |
commit | a76a46dae693ac0236f7ec4a1b276256887ad65b (patch) | |
tree | 13eb5c6019d0a34ecdcac445107349a91c339c99 /interface | |
parent | 34900140350c11df3e938184a03026395316f54e (diff) | |
download | rspamd-a76a46dae693ac0236f7ec4a1b276256887ad65b.tar.gz rspamd-a76a46dae693ac0236f7ec4a1b276256887ad65b.zip |
[WebUI] Fix error message
Diffstat (limited to 'interface')
-rw-r--r-- | interface/js/app/rspamd.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface/js/app/rspamd.js b/interface/js/app/rspamd.js index bec5c2f68..dbd4c33b9 100644 --- a/interface/js/app/rspamd.js +++ b/interface/js/app/rspamd.js @@ -416,7 +416,7 @@ define(['jquery', 'd3pie', 'visibility', 'app/stats', 'app/graph', 'app/config', } else { alertMessage('alert-error', 'Cannot receive data from ' + - neighbours_status[ind] + ': ' + errorThrown); + neighbours_status[ind].host + ': ' + errorThrown); } if (neighbours_status.every( function (elt) {return elt.checked;})) { |