Merge pull request #63809 from mhilbrunner/upnp-no-delete-only-add

UPNP: Don't delete previous mappings when adding new port mappings
This commit is contained in:
Max Hilbrunner
2022-08-27 23:32:37 +02:00
committed by GitHub

View File

@ -319,8 +319,6 @@ int UPNP::add_port_mapping(int port, int port_internal, String desc, String prot
return UPNP_RESULT_NO_GATEWAY;
}
dev->delete_port_mapping(port, proto);
return dev->add_port_mapping(port, port_internal, desc, proto, duration);
}