Skip to content

Commit

Permalink
Fix last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Apr 30, 2015
1 parent 5656240 commit 04fb779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/static/main.js
Expand Up @@ -113,10 +113,10 @@
globFct.poller(jobID, function(data){
scope.ipv4 = data[0];
scope.ipv6 = data[1];
if (scope.ipv4.length === 0){
if (!scope.ipv4){
scope.ipv4 = ['Unable to resolve in IPv4'];
}
if (scope.ipv6.length === 0){
if (!scope.ipv6){
scope.ipv6 = ['Unable to resolve in IPv6'];
}
});
Expand Down

0 comments on commit 04fb779

Please sign in to comment.