Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change HybridWebView default address to 0.0.0.1 #25042

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Core/src/Handlers/HybridWebView/HybridWebViewHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public partial class HybridWebViewHandler : IHybridWebViewHandler, IHybridWebVie
// 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
Expand All @@ -43,8 +43,8 @@ public partial class HybridWebViewHandler : IHybridWebViewHandler, IHybridWebVie
#endif

/// <summary>
/// Gets the application's base URI. Defaults to <c>https://0.0.0.0/</c> on Windows and Android,
/// and <c>app://0.0.0.0/</c> on iOS and MacCatalyst (because <c>https</c> is reserved).
/// Gets the application's base URI. Defaults to <c>https://0.0.0.1/</c> on Windows and Android,
/// and <c>app://0.0.0.1/</c> on iOS and MacCatalyst (because <c>https</c> is reserved).
/// </summary>
internal static readonly string AppOrigin = $"{AppHostScheme}://{AppHostAddress}/";

Expand Down
Loading