mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-25 23:44:13 +02:00
LinkingWindow now handles https as well as http.
This commit is contained in:
@@ -113,7 +113,7 @@ void LinkingHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
|
||||
OpenInDefaultBrowser( link );
|
||||
return;
|
||||
}
|
||||
else if( !href.StartsWith( wxT("http:")))
|
||||
else if( !href.StartsWith( wxT("http:")) && !href.StartsWith( wxT("https:")) )
|
||||
{
|
||||
HtmlWindow::OnLinkClicked( link );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user