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);
|
||||
for (Element a : document.select("a")) {
|
||||
String href = a.attr("href");
|
||||
|
||||
if (href.contains(" ")) {
|
||||
href = href.replace(" ", "%20");
|
||||
a.attr("href", href);
|
||||
}
|
||||
|
||||
if (!TextUtils.isEmpty(base))
|
||||
try {
|
||||
// https://developer.android.com/reference/java/net/URI
|
||||
|
|
Loading…
Reference in New Issue