diff --git a/src/Core/src/Handlers/HybridWebView/HybridWebViewHandler.cs b/src/Core/src/Handlers/HybridWebView/HybridWebViewHandler.cs index 970ad636a005..319addb55b3e 100644 --- a/src/Core/src/Handlers/HybridWebView/HybridWebViewHandler.cs +++ b/src/Core/src/Handlers/HybridWebView/HybridWebViewHandler.cs @@ -26,7 +26,7 @@ public partial class HybridWebViewHandler : IHybridWebViewHandler // Using an IP address means that the web view doesn't wait for any DNS resolution, // making it substantially faster. Note that this isn't real HTTP traffic, since // we intercept all the requests within this origin. - private static readonly string AppHostAddress = "0.0.0.0"; + private static readonly string AppHostAddress = "0.0.0.1"; private static readonly string AppHostScheme = #if IOS || MACCATALYST @@ -36,8 +36,8 @@ public partial class HybridWebViewHandler : IHybridWebViewHandler #endif /// - /// Gets the application's base URI. Defaults to https://0.0.0.0/ on Windows and Android, - /// and app://0.0.0.0/ on iOS and MacCatalyst (because https is reserved). + /// Gets the application's base URI. Defaults to https://0.0.0.1/ on Windows and Android, + /// and app://0.0.0.1/ on iOS and MacCatalyst (because https is reserved). /// internal static readonly string AppOrigin = $"{AppHostScheme}://{AppHostAddress}/";