mirror of
https://github.com/amark/gun.git
synced 2025-05-19 21:36:44 +00:00
10 lines
309 B
JavaScript
10 lines
309 B
JavaScript
|
|
var SEA = require('./root');
|
|
try{ if(SEA.window){
|
|
if(location.protocol.indexOf('s') < 0
|
|
&& location.host.indexOf('localhost') < 0
|
|
&& location.protocol.indexOf('file:') < 0){
|
|
location.protocol = 'https:'; // WebCrypto does NOT work without HTTPS!
|
|
}
|
|
} }catch(e){}
|
|
|