Skip to content

Commit

Permalink
Update WebView2 runtime download link (#6795)
Browse files Browse the repository at this point in the history
WinUI 2 should have its own link, rather than using the same one as WinUI 3, in case they must diverge.
  • Loading branch information
krschau authored Mar 8, 2022
1 parent aa479a8 commit fad4b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/WebView2/WebView2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ void WebView2::CreateMissingAnaheimWarning()
linkText.Text(ResourceAccessor::GetLocalizedStringResource(SR_DownloadWebView2Runtime));
auto hyperlink = winrt::Hyperlink();
hyperlink.Inlines().Append(linkText);
auto url = winrt::Uri(L"https://aka.ms/winui3/webview2download/");
auto url = winrt::Uri(L"https://aka.ms/winui2/webview2download/");
hyperlink.NavigateUri(url);
warning.Inlines().Append(hyperlink);
Content(warning);
Expand Down

0 comments on commit fad4b58

Please sign in to comment.