diff --git a/ArchiSteamFarm/WCF.cs b/ArchiSteamFarm/WCF.cs index d1437f3b7..41904a3f7 100644 --- a/ArchiSteamFarm/WCF.cs +++ b/ArchiSteamFarm/WCF.cs @@ -104,6 +104,9 @@ namespace ArchiSteamFarm { ServiceHost.AddServiceEndpoint(typeof(IWCF), new BasicHttpBinding(), string.Empty); ServiceHost.Open(); + } catch (AddressAccessDeniedException) { + ASF.ArchiLogger.LogGenericError("WCF service could not be started because of AddressAccessDeniedException!"); + ASF.ArchiLogger.LogGenericWarning("If you want to use WCF service provided by ASF, consider starting ASF as administrator, or giving proper permissions!"); } catch (Exception e) { ASF.ArchiLogger.LogGenericException(e); return;