Merge pull request #6217 from ByteHamster/nextcloud-punnycode

Convert nextcloud domains to Punycode
This commit is contained in:
ByteHamster 2022-12-11 16:30:15 +01:00 committed by GitHub
commit 1c2742e123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ package de.danoeh.antennapod.net.sync;
import org.apache.commons.lang3.StringUtils;
import java.net.IDN;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@ -18,7 +19,7 @@ public class HostnameParser {
Matcher m = URLSPLIT_REGEX.matcher(hosturl);
if (m.matches()) {
scheme = m.group(1);
host = m.group(2);
host = IDN.toASCII(m.group(2));
if (m.group(3) == null) {
port = -1;
} else {
@ -32,7 +33,7 @@ public class HostnameParser {
} else {
// URL does not match regex: use it anyway -> this will cause an exception on connect
scheme = "https";
host = hosturl;
host = IDN.toASCII(hosturl);
port = 443;
}