Removed port forwarding error notification when discovering.

This commit is contained in:
ChronosX88 2019-05-12 18:52:27 +04:00
parent 8c95351b03
commit ff8aa48b3e

View File

@ -131,11 +131,7 @@ public class MainLogic implements CoreContracts.IMainLogicContract {
boolean discoveredExternalAddress = false;
if(!discoverExternalAddress()) {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("action", UIActions.PORT_FORWARDING_ERROR);
AppHelper.getObservable().notifyUIObservers(jsonObject);
} else {
if(discoverExternalAddress()) {
discoveredExternalAddress = true;
}