mirror of https://github.com/M66B/FairEmail.git
Fix spaces in URIs
This commit is contained in:
parent
eb915d20b4
commit
4c140a92e3
|
@ -1262,6 +1262,12 @@ public class HtmlHelper {
|
||||||
String base = (b.size() > 0 ? b.get(0).attr("href") : null);
|
String base = (b.size() > 0 ? b.get(0).attr("href") : null);
|
||||||
for (Element a : document.select("a")) {
|
for (Element a : document.select("a")) {
|
||||||
String href = a.attr("href");
|
String href = a.attr("href");
|
||||||
|
|
||||||
|
if (href.contains(" ")) {
|
||||||
|
href = href.replace(" ", "%20");
|
||||||
|
a.attr("href", href);
|
||||||
|
}
|
||||||
|
|
||||||
if (!TextUtils.isEmpty(base))
|
if (!TextUtils.isEmpty(base))
|
||||||
try {
|
try {
|
||||||
// https://developer.android.com/reference/java/net/URI
|
// https://developer.android.com/reference/java/net/URI
|
||||||
|
|
Loading…
Reference in New Issue