diff --git a/App/Settings/Settings.swift b/App/Settings/Settings.swift index caafd13..8605b6f 100644 --- a/App/Settings/Settings.swift +++ b/App/Settings/Settings.swift @@ -88,6 +88,11 @@ class Settings if let alternateHost = redirectRules[host] { components.host = alternateHost + + // Since redirected hosts are usually self-hosted. + // If https is required, it will be upgraded anyway. + components.scheme = "http" + return components.url } }