diff --git a/Patches/WWWPatch.cs b/Patches/WWWPatch.cs index d21ce17..0a55f77 100644 --- a/Patches/WWWPatch.cs +++ b/Patches/WWWPatch.cs @@ -48,8 +48,9 @@ Plugin.Log.LogInfo("Redirected legacy MoTD."); } if (GenericConfig.DisableGoogleAnalytics.Value && url == "http://www.google-analytics.com/collect") return false; + url = PatchUtils.RewriteUrlForGameserver(url).ToString(); - if (GenericConfig.LogAllRequests.Value) Plugin.Log.LogDebug($"Request URL: {url}"); + if (GenericConfig.LogAllRequests.Value) Plugin.Log.LogDebug($"Request URL: {url}"); return true; } }