|
|
|
|
|
by llacb47
1956 days ago
|
|
For some reason this site redirects you to the insecure version (HTTP). So if you are using HTTPS everywhere, you will get stuck in a refresh loop. See this snippet of code from an inline script in the page source: var isNative = /RadioGarden/i.test(window.navigator.userAgent);
if (!isNative)
if ("https:" === window.location.protocol)
window.location.protocol = "http:";
else {
...
}
|
|