diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2022-08-02 09:11:05 +0200 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2022-08-02 09:11:05 +0200 |
commit | 2685cc7bb6708df745317fd2f078bc945555e4f8 (patch) | |
tree | d6d2a35d4f2a7482442f0445ed357eff8165ce79 | |
parent | 8cb51a642e7c34a73e7ed877ab46c041521205e5 (diff) |
UPNP: Don't delete mappings when adding mappings
Don't delete previous mappings when adding a new mapping.
This was a old workaround that seems to cause issues.
-rw-r--r-- | modules/upnp/upnp.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/upnp/upnp.cpp b/modules/upnp/upnp.cpp index d762ca4f09..82fe39e003 100644 --- a/modules/upnp/upnp.cpp +++ b/modules/upnp/upnp.cpp @@ -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); } |