StandaloneNatCommunicator spam

rollin
rollin
edited November 2018 in Photon Bolt
So I enabled the UPnP option now the first time and I get 'MappingException: Error 403: Not available Action' exceptions every second via

NatUtility_OpenPort()

try {
   ...
}
catch (MappingException exn) {
   if (exn.ErrorCode == 718) {
      ...
   }
   else {
      BoltLog.Exception(exn); // here
   }
}
catch (Exception exn) {
      ...
}

So I could deal with this by altering BoltUPnP.cs to not spam me but I'm wondering how this is supposed to work in cases where a 403 is constantly thrown?

Comments