Skip to content

Commit

Permalink
Only show notice about beacons sent when the trust level is low.
Browse files Browse the repository at this point in the history
  • Loading branch information
caedesvvv committed Oct 26, 2014
1 parent 9fc4aef commit 25325a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/frontend/controllers/lobby.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ function (controllers, DarkWallet, Port, ChannelLink, Bitcoin, Protocol, Channel
}
}
});
notify.note(_('Sent {0} beacons', sent));
if (minLevel < -2) {
notify.note(_('Sent {0} beacons', sent));
}
}

// hide peers after 4 mins
Expand Down

0 comments on commit 25325a6

Please sign in to comment.