mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Fix spaces in URIs
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user