mirror of
https://github.com/apognu/otter
synced 2025-02-17 11:20:34 +01:00
Do not transform URLs to HTTPS now that we support cleartext connections.
This commit is contained in:
parent
0facf09c94
commit
de0a494b43
@ -5,7 +5,6 @@ import android.widget.Toast
|
||||
import com.google.android.exoplayer2.util.Log
|
||||
import com.preference.PowerPreference
|
||||
import java.net.URI
|
||||
import java.net.URL
|
||||
|
||||
fun Context?.toast(message: String, length: Int = Toast.LENGTH_SHORT) {
|
||||
if (this != null) {
|
||||
@ -35,9 +34,7 @@ fun mustNormalizeUrl(rawUrl: String): String {
|
||||
val fallbackHost = PowerPreference.getFileByName(AppContext.PREFS_CREDENTIALS).getString("hostname")
|
||||
val uri = URI(rawUrl).takeIf { it.host != null } ?: URI("$fallbackHost$rawUrl")
|
||||
|
||||
return uri.toURL().run {
|
||||
URL("https", host, file)
|
||||
}.toString()
|
||||
return uri.toString()
|
||||
}
|
||||
|
||||
fun toDurationString(duration: Long, showSeconds: Boolean = false): String {
|
||||
|
Loading…
x
Reference in New Issue
Block a user