From d12fd7768a4d736ba771bde8af0e7ca4d35b8124 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 2 Jun 2021 16:46:17 -0700 Subject: [PATCH] fix: Link to VLC using HTTPS (#1987) May help with users who are man-in-the-middled and redirected to malicious websites. See: https://github.com/webtorrent/webtorrent-desktop/issues/1908 --- src/renderer/components/unsupported-media-modal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/unsupported-media-modal.js b/src/renderer/components/unsupported-media-modal.js index 0e750d72..f4d27891 100644 --- a/src/renderer/components/unsupported-media-modal.js +++ b/src/renderer/components/unsupported-media-modal.js @@ -36,7 +36,7 @@ module.exports = class UnsupportedMediaModal extends React.Component { } onInstall () { - shell.openExternal('http://www.videolan.org/vlc/') + shell.openExternal('https://www.videolan.org/vlc/') // TODO: dcposch send a dispatch rather than modifying state directly const state = this.props.state