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

Update browser links to HTTPS #5788

Merged
merged 2 commits into from
Apr 10, 2020
Merged
Show file tree
Hide file tree
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 react/features/unsupported-browser/components/browserLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
*
* @type {string}
*/
export const CHROME = 'http://google.com/chrome';
export const CHROME = 'https://www.google.com/chrome/';

/**
* The URL at which Chromium is available for download.
*
* @type {string}
*/
export const CHROMIUM = 'http://www.chromium.org/';
export const CHROMIUM = 'https://www.chromium.org/';

/**
* The URL at which Microsoft Edge is available for download.
Expand All @@ -27,7 +27,7 @@ export const EDGE
*
* @type {string}
*/
export const FIREFOX = 'http://www.getfirefox.com/';
export const FIREFOX = 'https://www.getfirefox.com/';

/**
* The URL at which Safari is available for download.
Expand Down
4 changes: 2 additions & 2 deletions static/recommendedBrowsers.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ <h2 class = 'unsupported-desktop-browser__title'>
We recommend to try with the latest version of&nbsp;
<a
className = 'unsupported-desktop-browser__link'
href = 'http://google.com/chrome' >Chrome</a>&nbsp;or&nbsp;
href = 'https://www.google.com/chrome/' >Chrome</a>&nbsp;or&nbsp;
<a
class = 'unsupported-desktop-browser__link'
href = 'http://www.chromium.org/'>Chromium</a>
href = 'https://www.chromium.org/'>Chromium</a>
</p>
</div>
</body>
Expand Down