mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-26 22:44:36 +00:00
Merge pull request #11615 from nl6720/webui-magnet-warning
Mention HTTPS in WebUI magnet link warning
This commit is contained in:
commit
5e83574de1
@ -967,7 +967,10 @@ window.addEvent('load', function() {
|
|||||||
|
|
||||||
function registerMagnetHandler() {
|
function registerMagnetHandler() {
|
||||||
if (typeof navigator.registerProtocolHandler !== 'function') {
|
if (typeof navigator.registerProtocolHandler !== 'function') {
|
||||||
alert("Your browser does not support this feature");
|
if (window.location.protocol !== 'https:')
|
||||||
|
alert(QBT_TR("To use this feature, the WebUI needs to be accessed over HTTPS")QBT_TR[CONTEXT=MainWindow]);
|
||||||
|
else
|
||||||
|
alert(QBT_TR("Your browser does not support this feature")QBT_TR[CONTEXT=MainWindow]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user